paginasweb.cr Ads.txt file
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Volvemos pronto</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
body {
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
background: url("image.jpg") no-repeat center center fixed;
background-size: cover;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
overflow: hidden;
}
.container {
max-width: 600px;
padding: 2rem;
background: rgba(
0,
0,
0,
0.6
); /* Transparencia para mostrar la imagen de fondo */
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
border-radius: 12px;
animation: fadeIn 1.5s ease-in-out;
}
h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #c4c4c4;
}
.spinner {
border: 4px solid rgba(255, 255, 255, 0.3);
border-top: 4px solid #fff;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 0 auto 1rem;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<div class="spinner"></div>
<h1>Estamos trabajando en algo increíble</h1>
<p>Pronto podrás descubrirlo. ¡Gracias por tu paciencia!</p>
</div>
</body>
</html>