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

html, body {
  height: 100%;
  background: #0a0e1a;
}

.hero {
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* respeta la barra de navegador en móvil */
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* llena la pantalla sin deformar */
  object-position: center;
  display: block;
}
