.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(19, 19, 19);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}
