.musicVideo{
    margin: 2rem auto;
    width: 95%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 1rem #f225;
    position: relative;
    background: #f225;
}

.musicVideo iframe{
    width: 100%;
    height: 100%;
}

.musicVideo img{
    width: 100%;
    height: 100%;
}

#ytplaybtn{
    position: absolute;
    height: 4rem;
    width: 6rem;
    cursor: pointer;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.hero{
    height: 100svh;
    overflow: hidden;
    background-image: url('/images/hero.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 5rem 3rem #000;
}

.hero::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100svh;
    width: 100%;
    background: linear-gradient(transparent, #000);
}

.releases h2{
    margin: 3rem 0 1rem;
}

section h2{
    margin: 2rem 0 1rem;
}

.row{
    width: 100%;
    display: flex;
    background: #0004;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    padding: 0 1rem;
    border-bottom: 2px solid #f225;
    text-decoration: none;
    transition: 200ms ease-in-out;
    position: relative;
}

.row:first-of-type{
    border-top: 2px solid #f225;
}

.row img{
    height: 80%;
}

.row:hover{
    background: #0008;
}

.row:hover img:not(.spotifyOverlay){
    filter: blur(3px) brightness(0.6);
}

.row:hover .spotifyOverlay{
    height: 3rem !important;
}

.spotifyOverlay{
    position: absolute;
    right: 1.45rem;
    height: 0 !important;
    transition: 200ms;
}

.release-container{
    width: 100%;
}

.releases{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.releases h2{
    margin-top: 1rem;
}

.nextEvent{
    text-align: center;
}

.nextEvent .row{
    margin-bottom: 1.5rem;
}

.year{
    text-align: left;
}

.socials:not(.listen){
    margin: 0 auto;
    margin-top: -5rem;
    transform: translate(0);
}


.posterCard{
    height: 10rem;
}
.poster{
    height: 100%;
    aspect-ratio: 93/128;
}

.poster img{
    height: 100%;
    width: 100%;
}

#openPoster{
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    height: 100dvh;
    background: #00000099;
    backdrop-filter: blur(5px);
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#openPoster img{
    max-width: calc(100% - 1rem);
    max-height: 90vh;
    animation: openPoster 250ms linear;
}

@keyframes openPoster{
    0%{
        scale: 0;
    }
    100%{
        scale: 1;
    }
}

#closePoster{
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: 0;
    outline: 0;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: 200ms;
}

#closePoster svg{
    width: 100%;
    height: 100%;
}

#closePoster:hover{
    scale: 1.1;
    filter: drop-shadow(2px 2px 2px solid #ffffff);
}

.submit{
    margin-top: 3rem;
    text-align: center;
}

.submit a{
    display: block;
    width: fit-content;
    margin-bottom: 1rem;
}