@media (max-width: 1200px){
    body{
        background-color: rgb(0, 0, 0);
    }

    .fundo-video {
        display: none;
    }
    .container{
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 30px;
    }

    .container .mario{
        max-width: 60%;
    }

    .container .informacoes{
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .container .descricao{
        color: antiquewhite;
        text-align: center;
    }

    .container .botao-trailer{
        background-color: beige;
        color: red;
    }
}

@media (max-width: 500px){
    body{
        background-color: rgb(228, 76, 76);
    }

    .fundo-video {
        display: none;
    }

    .cabecalho{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .container .imagem-titulo{
        max-width: 75%;
    }

    .modal .fechar-modal{
        width: 30px;
        line-height: 30px;
    }

    .modal #video{
        width: 300px;
        height: 169px;
    }

}

@media (max-width: 480px){
    .modal #video{
        width: 250px;
        height: 140px;
    }
}

