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

body {
  background: #000;
  color: #aaa;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 2.5rem;
}

.logo {
  width: 100%;
  max-width: 540px;
  height: auto;
}

.contact {
  max-width: 540px;
  text-align: center;
}

.contact ul {
  list-style: none;
  margin-top: 0.75rem;
}

/*
  Ofuscación de emails: los caracteres @ y . del dominio
  no existen en el HTML; el navegador los inyecta vía CSS.
  Un scraper que analice el código fuente no encontrará
  ninguna dirección de correo válida.
*/
.at::after  { content: "\0040"; } /* @ */
.dot::after { content: "\002E"; } /* . */

.email {
  color: #ddd;
  white-space: nowrap;
}
