/* Formatação pagina de conteudo*/

.conteudo h1{
    font-size: 35px;
    color: yellow;
    text-transform: capitalize;
    text-align: center;
}

.conteudo h2{ 
    font-size: 25px;
    text-transform: capitalize;
    color: yellow;
    text-align: left;

 }
.conteudo h3{ 
    font-size: 25px;
    text-transform: capitalize;
    color:yellow;
    text-align: left;
 }
ul li{ 
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-align: justify;
}
ol li{ 
    font-size: 20px;
       color: rgb(255, 255, 255);
    text-align: justify;
 }
.conteudo p{
    font-size: 20px;
     color: rgb(255, 255, 255);
    text-align: justify;
 }
.conteudo{
    background-color: black;
    padding: 0 10%;
 }
.conteudo img{ 
    width: 450px;
    margin: 0 auto;
    display: block;
    border-radius: 15%;
}
body{
    background-color: black;
}
.conteudo ul li a{
    font-size: 18px;
    color: yellow;
}
nav{
    background-color: rgb(32, 55, 58);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 30px;
}
nav a{
    color: yellow;
    font-weight: bold;
    text-decoration: none;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
}
/*Formatação para celular*/
@media only screen and (max-width:800px){
   
    
    nav{
        flex-wrap: wrap;
    }
.conteudo img{ 
    width: 80%;   
}
.conteudo p{
    font-size: 16px;
  
 }
.conteudo h1{
    font-size: 25px;
    color: yellow;
    text-transform: capitalize;
    text-align: center;
}

.conteudo h2{ 
    font-size: 20px; 
 }
.conteudo h3{ 
    font-size:18px;
    padding-left: 0%;
    margin-left: 0%;
}
ul{
    padding-left: 5%;
}
ol{
    padding-left: 5%;
}
ul li{ 
    font-size: 16px;

}
ol li{ 
    font-size: 16px;
    
 }
}

/*Formatação pagina Quem somos*/

.turma{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
    margin-top: 3%;
}
.aluno img{
  width: 160px;
  height: 200px;
  border-radius: 10%;
}
.aluno{
    border-color: yellow;
    border-width: 1px;
    border-style: solid;
    border-radius: 10%;
    padding: 10px;
    text-align: center;
}
.aluno h3{
    text-align: center;
    font-style: italic;
}
h4{
    text-align: center;
    color: white;
    font-size: 24px;
}
