* {
    margin: 0;
}

body {
    box-sizing: border-box;
    font-family: "roboto";
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pai{
    display: flex;
    flex-wrap: nowrap;
}
.menuLateral{
    padding: 20PX;
    width: 500px;
    height: 100%;
    font-size: larger;
    cursor: pointer;
}
.menuLateral p{
    white-space: nowrap;
}
.menuLateral p:hover{
    background-color: rgb(170, 170, 170);

}
.pai img:hover{
    background-color: rgb(170, 170, 170);
}
.container {
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    flex-wrap: wrap;

}

.divAula{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-left: 350px;
    padding-right: 350px;
}
.btEsquerdo{
    justify-content: left;
    cursor: pointer;
}
.btDireito{
    justify-content: right;
    cursor: pointer;
}
.container h1{
    text-align: center;
}
.container p{
    text-align:justify
}

.divTitulo {
    padding: 30px;
    width: 100%;
}

.divVideo {
    padding: 30px;
    width: 600px;
    height: 300px;
    
}

.divParagrafo {
    padding: 30px;
    width: 100%
}
@media (max-width: 600px) {
    body {
        overflow-wrap: break-word;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .pai{
        display: flex;
        flex-wrap: wrap;
        justify-items: flex-start;
        width: 100%;
    }
    .menuLateral{
        width: 100%;
        height: 1700px;
    }
    .menuLateral2{
        width: 100%;
        height: 400px;
    }
    .container {
        width: 100%;
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        flex-wrap: wrap;
    }
    .divAula{
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding-left: 40px;
        padding-right: 40px;
    }
}