/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #000; /* fondo negro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', Courier, monospace; /* máquina de escribir */
  color: #fff;
  text-align: center;
}

img.logo {
  max-width: 40%; /* logo en desktop */
  height: auto;
  margin-bottom: 40px;
}

p.under-construction {
  font-size: 1.8rem; /* tamaño grande */
  font-weight: bold; /* negrita */
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Responsivo para móvil */
@media (max-width: 768px) {
  img.logo {
    max-width: 90%; /* logo ocupa casi todo el ancho del móvil */
    height: auto;
    margin-bottom: 20px; /* suficiente espacio para el texto */
  }
  p.under-construction {
    font-size: 1.5rem; /* texto grande pero proporcional */
    margin: 0 10px; /* margen lateral para que no toque los bordes */
  }
}