* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.image-left,
.image-right {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.image-left {
  background-image: url('img/fondo1.png');
}

.image-right {
  background-image: url('img/fondo2.png');
}

/* En pantallas angostas, ocultar la imagen izquierda */
@media (max-width: 768px) {
  .image-left {
    display: none;
  }

  .image-right {
    flex: 1 0 100%;
  }
}
