@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
   
    background-size: cover;
    background-position: center center;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */

    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: normal;
    font-size: 4rem;
    margin-top: 5rem;
    color: #fff;
    text-shadow: 1px 1px 0 #333, -1px -1px 0 #333, 1px -1px 0 #333,
        -1px 1px 0 #333, 2px 2px 5px rgba(0, 0, 0, 0.65);
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    text-shadow: 1px 1px 0 #333, -1px -1px 0 #333, 1px -1px 0 #333,
        -1px 1px 0 #333, 2px 2px 5px rgba(0, 0, 0, 0.65);
}

.big-text {
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    margin: 0 2rem;
}

.countdown-elements {
    text-align: center;
}

.countdown-elements span {
    font-size: 1.3rem;
}

.countdown-elements {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-elements:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}


h1, .big-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
}

.countdown-container {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.countdown-elements {
    border-radius: 50%;
    padding: 50px;
    width: 220px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-elements {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease;
}

.countdown-elements:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .big-text {
        font-size: 4rem;
    }

    .countdown-elements {
        width: 100px;
        height: 100px;
        margin: 10px;
    }

    h1 {
        font-size: 3rem;
    }
}

footer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
    font-family: 'Poppins', sans-serif;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .big-text {
        font-size: 4.5rem;
    }

    .countdown-elements {
        width: 180px;
        height: 180px;
        padding: 40px;
    }

    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .big-text {
        font-size: 3.5rem;
    }

    .countdown-elements {
        width: 150px;
        height: 150px;
        padding: 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .big-text {
        font-size: 2.5rem;
    }

    .countdown-elements {
        width: 120px;
        height: 120px;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
        margin-top: 2rem;
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
    font-family: 'Poppins', sans-serif;
}