<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fascino | Próximamente</title>
<style>
/* --- Estilos Generales --- */
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #121212;
color: #EAEAEA;
overflow: hidden; /* Evita barras de scroll innecesarias */
}
/* --- Contenedor Principal Centrado --- */
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
padding: 20px;
box-sizing: border-box; /* Asegura que el padding no cause desbordamiento */
/* Fondo de gradiente sutil y elegante */
background: linear-gradient(135deg, #2c3e50, #1a222b);
}
/* --- Estilos del Logo --- */
.logo {
max-width: 250px; /* Ajusta el tamaño máximo del logo */
width: 60%; /* Usa un porcentaje para que sea adaptable */
margin-bottom: 2.5rem; /* Espacio debajo del logo */
animation: fadeIn 2s ease-in-out;
}
/* --- Estilos de los Textos --- */
h1 {
font-size: clamp(2rem, 8vw, 3.5rem); /* Tamaño de fuente adaptable */
margin: 0 0 1rem 0;
font-weight: 600;
letter-spacing: 1px;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
animation: fadeIn 2.5s ease-in-out;
}
p {
font-size: clamp(1rem, 4vw, 1.25rem); /* Tamaño de fuente adaptable */
margin: 0;
max-width: 600px;
line-height: 1.6;
font-weight: 300;
animation: fadeIn 3s ease-in-out;
}
/* --- Animación de Entrada Sutil --- */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<img src="fascino-logo.png" alt="Logo de Fascino" class="logo">
<h1>Página en Construcción</h1>
<p>Estamos preparando algo increíble y lleno de estilo para ti. <br> Vuelve muy pronto.</p>
</div>
</body>
</html>