:root {
    --white: #F0FFFF;
    --black: #303030;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    /* Allows some margin on the sides */
    max-width: 1200px;
    /* Maximum width */
    margin: auto;
    /* Centers the main content */
}

#comingsoon {
    font-size: 6rem;
    /* Responsive font size */
    margin: 20px 0;
    /* Adds some space around the text */
}

#countdown {
    display: flex;
    flex-wrap: wrap;
    /* Allows the items to wrap on small screens */
    justify-content: center;
}

.time-segment {
    text-align: center;
    margin: 10px;
}

.time {
    font-size: 2em;
    /* Responsive font size */
    letter-spacing: 3px;
}

.label {
    font-size: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

#languageSwitcher {
    font-size: 1em;
    color: var(--white);
    background-color: var(--black);
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    appearance: none;
}

#description a:link {
    color: #00B9E8;
}

@media (max-width: 800px) {
    #comingsoon {
        font-size: 4rem;
        /* Smaller font size for small screens */
    }
    .time {
        font-size: 1.5em;
        /* Smaller time font size for small screens */
    }
}

@media (max-width: 600px) {
    #comingsoon {
        font-size: 2rem;
        /* Smaller font size for small screens */
    }
    .time {
        font-size: 1.5em;
        /* Smaller time font size for small screens */
    }
}