body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

main{
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 1rem 0;
    gap: 1rem;
    margin-bottom: 7rem;
    color: var(--cor-preto);
    background-color: var(--cor-fundo);
    
    p {
      font-size: 1.2rem;
      text-align: justify;
      padding: 1.5rem;
    };
}

#titulo{
  text-align: center;
  font-size: 2.5rem;
  color: var(--cor-principal);
  padding: 1.5rem;
  margin: 1.5rem .5rem 1.5rem .5rem;
}

#subTitulo{
  font-size: 2rem;
  color: var(--cor-apoio);
  padding: 1rem;
  text-align: center;
}

#apresentacao {
    justify-content: space-evenly;
    line-height: 2rem;
}

#logoPage {
  width: 50vw;
  height: 10%;
  padding: 1rem 0 1rem 0;
  margin: 0 6rem 0 6rem;
}

#equipe{
  display: flex;
  flex-wrap: wrap;
   
   img{
     width: 50vw;
     height: 50%;
     border-radius: 100%;
     padding-top: 2rem;
     text-align: center;
     margin: 0 6rem 0 6rem;
   };
}

.nome {
  color: var(--cor-apoio);
  text-align: center;
  font-size: 1.2rem;
}

.descricao {
  justify-content: space-evenly;
  line-height: 2rem;
  margin-bottom: 2rem;
}