body {
  background-image: url("/imagenes/image2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.container {
  display: flex; /*Establece un contenedor flexible*/
  justify-content: center; /*Centra horizontalmente el contenido*/
  align-items: center; /*Centra verticalmente el contenido*/
  position: relative;
}

.main-image {
  max-width: 98%; /*Establece el ancho máximo de la imagen al 100% del contenedor*/
  max-height: 100%; /*Establece la altura máxima de la imagen al 100% del contenedor*/
}

.container div {
  position: absolute;
  color: white;
  justify-content: center;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container div h1 {
  margin-top: 15%;
  margin-bottom: 5%;
}
.container div span {
  font-weight: lighter;
}

/* Pantallas grandes */
@media screen and (min-width: 768px) {
  body {
    height: 300vh;
    width: 100%;
    background-attachment: fixed;
  }

  .container {
    height: 300vh; /*Establece la altura del div al 100% de la ventana*/
  }

  .sub-container-1 {
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 40%;
  }

  .sub-container-2 {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 100%;
  }

  .sub-container-2 img {
    max-width: 12%;
    max-height: 12%;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 8%;
  }

  .container div h1 {
    font-size: 270%;
  }
  .container div span {
    font-size: 150%;
  }
}

/* Pantallas pequeñas */
@media screen and (max-width: 767px) {
  body {
    height: 100vh;
    width: 100%;
    background-attachment: scroll;
  }

  .container {
    height: 100vh; /*Establece la altura del div al 100% de la ventana*/
  }

  .sub-container-1 {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 50%;
  }

  .sub-container-2 {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 140%;
  }

  .sub-container-2 img {
    max-width: 15%;
    max-height: 15%;
    margin-left: 4%;
    margin-right: 4%;
    margin-top: 3%;
  }
}
