@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Bebas+Neue&display=swap');

:root {
    --primary-color: #2c3e50; /* Azul oscuro */
    --secondary-color: #e74c3c; /* Rojo anaranjado */
    --accent-color: #f1c40f; /* Amarillo */
    --text-color: #333;
    --light-text-color: #f8f8f8;
    --background-color: #ecf0f1; /* Gris claro */
    --card-background: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: var(--box-shadow);
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slogan {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-text-color);
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    object-fit: cover;
}

.content {
    flex-grow: 1;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.content p {
    margin-bottom: 1rem;
}

.content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

#countdown {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.countdown-unit {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin: 0 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd700; /* Un tono más claro para el hover */
}

/* Estilos para pantallas más pequeñas */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .content {
        padding: 1rem;
        margin: 1rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    #countdown {
        font-size: 1.8rem;
    }
}