body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/*.container {*/
/*    text-align: center;*/
/*    padding: 50px;*/
/*    background-color: #ffffff;*/
/*}*/

.container {
    display: flex;            /* Enables Flexbox */
    flex-direction: column;   /* Stacks children vertically */
    justify-content: center;  /* Centers content vertically */
    align-items: center;      /* Centers content horizontally */
    height: 90vh;            /* Sets the container height to fill the viewport */
    text-align: center;       /* Ensures text is centered */
    padding: 50px;
    background-color: #ffffff;
}


.logo {
    max-width: 320px;
}

header h1 {
    color: #333;
}

main p {
    color: #555;
}

#timer div {
    display: inline-block;
    margin: 10px;
    font-size: 24px;
    color: #333;
}
