body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background-color: #502efb; /* Inspired by Discord's background blue */
    color: white; /* Keeps text visible against the dark background */
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps content properly spaced */
    height: 100%;
    padding: 10px;
}

h1 {
    word-break: break-word; /* Ensures the title fits on mobile screens */
    font-size: 2.2em; /* Adjusted font size */
    margin-top: 20px; /* Adjust as necessary */
    padding: 0 10px; /* Prevents text from touching the edges */
}

.color1 {
    color: #dac972; /* Lighter shade of Discord blue for contrast */
}

.color2 {
    color: #da72d0; /* White for high contrast and visibility */
}

#countdown {
    font-size: 2.1em; /* Larger font for better visibility */
    padding: 20px 0; /* Adds vertical spacing for the countdown */
    font-weight: bold; /* Makes the countdown text bold */
    color: #FFFFFF; /* Sets countdown color to white for contrast */
}

footer {
    font-size: 1.2em; /* Adjusted footer text size */
    color: #6446fe; /* A lighter, more subtle color for readability but low contrast */
    margin-bottom: 20px; /* Ensures footer stays at the bottom */
}
