#reels {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: var(--fullHeight);
    min-height: var(--fullHeight);
    background: #fff;
    overflow: hidden;
}

#reels .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    height: 20%;
    overflow: hidden;
    border-image: var(--reels_topOverlay);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 100% 100%;
    background-image: var(--reels_backgroundImage);
}

#reels .top .d_h2 {
    display: flex;
    align-items: end;
}

#reels .top .d_h3 {
    display: flex;
    align-items: center;
}


#reels .top h2 {
    margin: 0;
    padding: 0;
    font-size: 7vh;
    color: #fff;
}

#reels .top h3 {
    margin-top: 3%;
    font-size: 3vh;
    text-align: center;
    color: #fff;
}

#reels .imgs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
    height: 80%;
    padding: 4px 0;
    overflow: hidden;
}

#reels article {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#reels article img {
    width: 100%;
    height: 100%;
}

#reels .btnPlay {
    position: absolute;
    bottom: 10%;
    right: 10px;
    font-size: 3vh;
    cursor: pointer;
    color: orangered;
    animation-name: flutuar;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-out;
}


@media (max-height: 680px) {
    #reels .top h2 {
        font-size: 6vh;
    }
}

@media (max-height: 650px) {
    #reels .top h2 {
        font-size: 5vh;
    }

    #reels .top h3 {
        margin: 0 15%;
        font-size: 2.5vh;
        line-height: 1.2;
    }
}