* {
    filter: drop-shadow(2px 2px 2px black)
}
#container {
    background: none !important;
}

#container video {
    z-index: -100;
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 90%;
}

#menu.clear {
    backdrop-filter: blur(0);
}

.promo-20 {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.promo-20 h1 {
    
    font-size: 500%;
    font-weight: 600;
    opacity: 1;
    transform: translateY(0);
    animation: titleShowup 4s ease;
    scale: 1;
}

.promo-20 p {
    font-size: 200%;
    font-weight: 200;
    opacity: 1;
    scale: 1;
    transform: translateY(0);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pShowup 6s ease;
}

.listen-btn {
    padding: 2vh 2vw;
    margin-top: 3vh;
    font-size: 150%;
    font-weight: 500;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(16px);
    text-decoration: none;
}

@keyframes titleShowup {
    from {
        opacity: 0;
        transform: translateY(-128px);
        scale: 1.5;
    }
}

@keyframes pShowup {
    from {
        opacity: 0;
        scale: 0.4;
        transform: translateY(64px);
    }
}