html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #808080; /* Grey background color */
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow: hidden; /* Prevent scrolling */
}

#timer-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.5em; /* Default font size */
}

.time-section {
    margin: 10px 10px; /* Adjusted margin for better spacing */
}

.time {
    display: block;
    font-size: 2.5em; /* Default font size */
    font-weight: bold;
}

.label {
    font-size: 0.5em;
    text-transform: uppercase;
    color: #f1f1f1;
}

/* Larger clock size for desktop */
@media (min-width: 992px) {
    #countdown {
        font-size: 2em; /* Increased font size for desktop */
    }
    
    .time {
        font-size: 3.25em; /* Increased font size for desktop */
    }
    
    .time-section {
        margin: 20px 20px; /* Increased margin for desktop */
    }
}

/* Move up timer by 20% for mobile devices */
@media (max-width: 600px) {
    #timer-container {
        transform: translateY(-20%);
    }
}