@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ----------------------bienvenido--------------------------- */
.section{
  /* text-align: center; */
  padding: 100px 0 100px 0;  
  text-transform: uppercase;
}
.contenido{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; 
 
}
.contenido2 h1{
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.contenido2 p{
  text-align: justify;
}
.section img{
  width: 400px;
  height: 400px;
  border-radius: 25px;
  box-shadow: 0 0 25px #6a717e; 
  object-fit: cover;
  aspect-ratio: 16 / 9; 
}
/* responsive */
@media (max-width: 900px) {
  .contenido{
    display: grid;
  }
  .contenido2 p{
    padding: 30px;
  }
  /* .contenido3{
    text-align: center;
  } */
  .section img{
    width: 100%;
    padding: 20px;
    border-radius: 50px;

  }
}