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

html, body {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* fondo negro para que no quede blanco si hay bordes */
}

.contenedor-imagen {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.contenedor-imagen img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
