/* Reset */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

/* Fondo con imagen */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #ffffff;

  background-color: #0b0b0f;
  background-image: url("img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Contenedor centrado + overlay */
.screen {
  min-height: 100vh;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.25); /* deja ver la imagen */
}

/* Texto */
.logo {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;

  font-size: clamp(48px, 10vw, 120px);
}
