/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensures the content is vertically centered */
    margin: 0;
    text-align: center;
}

/* Smaller text styling */
.small-text {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

/* Countdown heading styling */
h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #11beed;
    margin-top: 30px;
}

/* Countdown timer container styling */
.countdown-container {
    background-color: #11beed;
    color: white;
    padding: 40px 80px;
    border-radius: 15px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    font-size: 3rem;
    display: inline-block;
    width: 80%;
    max-width: 800px;
    margin-top: 30px;
    text-align: center; /* Ensures the countdown numbers are centered */
}

/* Countdown numbers styling */
#countdown {
    font-size: 5rem;
    font-weight: bold;
    margin-top: 20px;
    background-color: #050404;
    padding: 20px;
    border-radius: 10px;
    display: block;
}

/* Label for units styling */
.timer-label {
    font-size: 1.5rem;
    margin-top: 10px;
}
