section{
    overflow-x: scroll;
}

.first{
    margin-top: 7rem;
}
.photos{
    display: flex;
    height: 10rem;
    overflow-x: scroll;
    padding: 0.1rem 0.5rem;
}

.photos img{
    height: 100%;
    border-radius: 0.5rem;
    border: 1px solid #f224;
    cursor: pointer;
    box-shadow: 0 0 0.2rem #f22;
    margin: 0 0.5rem;
}

.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);
}

h2{
    margin: 2rem auto 0.5rem;
}

section{
    margin-bottom: 3rem;
    text-align: center;
}

.link{
    text-decoration: none;
    color: #f22;
}

#photosubmit{
    padding: 0 0.5rem;
}

.photos img{
    object-fit: cover;
}

.bts img{
    width: 33%;
}

.events img:nth-child(even), .shde .long{
    width: 35%;
}

.events img:nth-child(odd){
    width: 15%;
}

.shde img{
    width: 16.5%;
}

.fans img{
    flex: 1;
}

@media screen and (max-width: 468px){
    .bts img{
    min-width: 8rem;
}

.events img:nth-child(even), .shde .long{
    min-width: 10rem;
}

.events img:nth-child(odd){
    min-width: 5rem;
}

.shde img{
    min-width: 5rem;
}
}