#mainvideo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}



#video-container{
    width: 60vw;
    /* max-width: 1000px; */
    /* border: 1px solid red; */
    margin: 0 auto;
}

#video-titulo{
    font-weight: 700;
    font-size: 32px;
    margin-top: 26px;
    line-height: 1em;
    margin-bottom: 8px;
}

#video-player{
    /* border: 1px solid red; */
    /* background: #f70; */
    text-align: center;
}

#video-player iframe{
    width: 100%;
    height: 60vh;
    max-height: 70vh;
    margin: 0;
    background: rgb(0, 0, 0);
}

#video-descricao{
    font-size: 20px;
    line-height: 1.1em;
}




@media only screen and (max-width: 768px) {
    #miolo {
        height: initial !important;
        margin-bottom: 40px;
    }


    /* #feed {
        position: initial;
        margin-top: 100px;
    } */

    #video-container{
        width: 100%;
    }


    #video-player iframe{
        max-height: 50vh;
    }

    #video-titulo{
        font-size: 24px;
        margin-top: 20px;
        padding: 6px;
    }

    #video-descricao{
        font-size: 16px;
        padding: 6px;
    }

}