main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* seccion principal es una clase de secciones que se encuentran el la pagina principal */
.seccionPrincipal {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

/* #portadaNOE{
  background-color: aliceblue;
  background-color: rgb(224, 224, 224);
}

#portadaNOE img{
  padding: 60px 0; 
}

#portadaProdae{
  padding: 10px 0;
  background-color: rgb(224, 224, 224); 
}*/

#listaContacto{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#listaContacto li{
  width: 90%;
  margin-left: 4.5%;
  line-height: 30px;
}

#parrafoContacto{
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

#parrafoContacto p{
  width: 100%;
}

/* Le doy un tamaño a la caja para que voy a centrar */
.seccionPrincipal div {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

/* Le doy un tamaño a al texto que voy a usar como titulo de la seccion */
.seccionPrincipal div h1 {
  text-align: center;
  /* font-size: xx-large; */
  margin-bottom: 30px;
  font-size: 40px;
}

.seccionPrincipal div p {
  font-size: 24px;
  margin: 10px;
  text-align: justify;
  font-family: Arial;
}

.seccionPrincipal li{
  font-size: 24px;
}

.headingTitle {
  background-color: #008996;
  width: 50%;
  padding: 1.5%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  font-size: 30px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-family: Arial;
  margin: 60px 0px 25px 0px;
  text-transform: uppercase;
}


@media (max-width: 950px) {

  .seccionPrincipal div{
    width: 80%;
  }
}

