
body{
  background-color: 
  white;
  text-align: center;
  box-sizing: border-box;
  font-family: 'work sans', sans serif ;
}
/*MENU SUPERIOR*/
.menu-nav {
  background-color: #27656C;
  padding:  1.2rem 0;
  max-height: 10rem;
  
}
nav ul {
  list-style: none;
  display: flex;         
  justify-content: center;
  gap: 5rem;             
  padding: 1rem;

}
nav ul a{
  text-decoration: none;
  color:#DAF1DD;
  padding: 5rem 5 rem;
  border-radius: 25%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  font-size: 2.5rem;

}
nav ul a:hover,
nav ul a:focus{
  color: black;
  background-color: #DAF1DD;
  transform: translateY(-0.12rem) scale(1.02);
}
/*MENU INTEGRANTES*/
h1{
  font-size: 3rem;
}
.integrantes{
  margin: 1rem auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  max-width: 90%;
}
.integrantes figure{
  margin: 0;
}
.integrantes a{
  display: inline-block;
  text-decoration: none;
  color: black;
  padding: 0.5rem 1rem;
}
.integrantes a img{
  width: 16rem;
  height: 16rem;
  margin-top: 2rem;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.integrantes a figcaption{
  margin-top: 0.5rem;
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.integrantes a figcaption p{
  font-size: small;
  color: #27656C;
}
.integrantes a:hover ,
.integrantes a:focus {
  transform: translateY(-0.12rem) scale(1.02);
}
.integrantes a:active{
  transform: translateY(-0.12rem) scale(1.02);
}
footer{
  background-color: #27656C;
  color: white;
  font-size: 0.7rem;
  padding: 1rem;
  margin-top: 10rem;
}