@font-face {
    font-family: 'Perfectly Nineties';
    src: local('Perfectly Nineties Regular'), local('PerfectlyNineties-Regular'),
        url('PerfectlyNineties-Regular.woff2') format('woff2'),
        url('PerfectlyNineties-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #0a0909;
    color: #920000;
    font-family: 'Perfectly Nineties', serif;
    overflow-x: hidden;
    text-transform: lowercase !important;
    cursor: default;
    overflow-x: hidden;
}

#page-fade {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    pointer-events: none;
    animation: cinematicFade 1.8s cubic-bezier(.77, 0, .18, 1) forwards;
}

@keyframes cinematicFade {
    0% {
        opacity: 1;
    }

    70% {
        opacity: .4;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}


a {
    color: #920000;
    text-decoration: none;
    cursor: pointer !important;
}

.btn-outline-danger {
    color: #920000;
    border-color: #920000;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #920000;
    border-color: #920000;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
    box-shadow: 0 0 0 0.25rem rgba(203, 0, 0, 0.5);
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #920000;
    border-color: #920000;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(203, 0, 0, 0.5);
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* .hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.layer {
    position: absolute;
    max-width: 100%;
    max-height: 900px;
    transition: transform 0.5s cubic-bezier(.22, .61, .36, 1);
} */

.cover {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    position: relative;
    width: min(90vmin, 900px);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    perspective: 1000px;
}

.layer {
    position: absolute;
    max-width: 100%;
    transition: transform 0.5s cubic-bezier(.22, .61, .36, 1);
}

.layer:nth-child(1) {
    max-height: 33.33dvh;
    position: absolute;
    top: 0;
}

.layer:nth-child(2) {
    position: absolute;
    max-height: 33.33dvh;
    inset: 0;
    margin: auto;
}

@media screen and (min-width: 468px) {
    .layer:nth-child(3) {
        max-height: 50dvh;
        margin-top: 4dvh;
    }

    .layer:nth-child(5) {
        max-height: 2.5dvh;
    }
}

@media screen and (max-width: 467px) {
    .layer:nth-child(3) {
        max-height: 50dvw !important;
        margin-top: 4dvh;
    }

    .layer:nth-child(5) {
        max-height: 1rem !important;
    }
}

.layer:nth-child(4) {
    max-height: 33.33dvh;
    position: absolute;
    bottom: 0dvh;
}



.layer:nth-child(1):hover {
    transform: translateZ(10px) scale(1.05);
}

.layer:nth-child(2):hover {
    transform: translateZ(10px) scale(1.05);
}

.layer:nth-child(3):hover {
    transform: translateZ(10px) scale(1.05);
}

.layer:nth-child(4):hover {
    transform: translateZ(10px) scale(1.05);
}

.layer:nth-child(5):hover {
    transform: translateZ(10px) scale(1.5);
}

.lyrics,
.tracklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.lyrics p {
    float: left;
    margin: 1rem;
    height: 100%;
}

.tracklist a {
    float: left;
    margin: 0 1rem;
}

.barcode {
    max-width: 150px;
    box-shadow: 0px 0px 20px #030202;
}