Current File : /var/www/dilosa/index.html
<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Dilosa.es — Próximamente</title>

  <style>
    /* Paleta */
    :root {
      --accent-start: #009ffd; /* azul vivo */
      --accent-end:   #2a2a72; /* azul oscuro */
    }

    /* Reset mínimo */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    /* Contenedor principal */
    .wrapper {
      opacity: 0;
      animation: fadeIn 1.2s ease-out forwards;
      max-width: 90%;
    }

    h1 {
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
    }

    p {
      font-size: clamp(1rem, 3vw, 1.5rem);
      font-weight: 300;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  </style>
</head>
<body>
  <div class="wrapper">
    <h1>Bienvenido a <strong>dilosa.es</strong></h1>
    <p>En breve estaremos con usted</p>
  </div>
</body>
</html>