* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuir contenido entre header y footer */
    align-items: center;
    height: 100vh;
    background-color: #0025a0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrar verticalmente */
    align-items: center; /* Centrar horizontalmente */
    flex-grow: 1; /* Permitir que el contenedor ocupe espacio adicional */
    text-align: center;
    transform: scale(1.3); /* Ajustar el tamaño del contenido */
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.correo {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.correo a {
    color: #FF5733;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.correo a:hover {
    color: #FFD700; /* Dorado */
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFA500;
}

#countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF5733;
    animation: bounceGlow 2s infinite ease-in-out;
}

footer {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: normal;
    padding: 10px 0;
}

footer a {
    color: #FF5733;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
    color: #FFD700; /* Dorado */
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFA500;
}

@keyframes bounceGlow {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 0 5px #FF5733, 0 0 10px #FF4500;
    }
    50% {
        transform: translateY(-10px);
        text-shadow: 0 0 15px #FF5733, 0 0 20px #FF4500;
    }
}
