body {
    font-family: "Share Tech Mono", monospace;
    font-style: normal;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    background-color: #000; /* Black background */
    color: #ccc;            /* White/light grey text */
    margin: 0;
    text-align: center; /* Center text within body */
}

h1 {
    color: #ffffff; /* White heading */
    font-size: 3em;
    margin: 0;
}

#timer-container {
    padding: .5em;
    font-size: 2.5em; /* Make timer text larger */
    line-height: 1.5; /* Improve readability */
    color: #ccc; /* Light grey for descriptive text */
}

#timer-container span {
    font-weight: bold;
    color: #fff; /* Bright white for the numbers */
    text-align: right; /* Right-align numbers if needed */
}
