@font-face {
    font-family: 'VCR OSD MONO';
    src: url('fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    /*font-family: 'Technology-Bold', sans-serif;*/
    font-family: 'VCR OSD Mono', sans-serif;
    height: 100%;
    margin: 0;
    background-color: black;
    color: white;
    user-select: none; /* Disable text selection on the entire page */
    overflow: hidden; /* Disable scrolling */
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    /*font-family: 'Technology-Bold', sans-serif;*/
    font-family: 'VCR OSD Mono', sans-serif;
}

.colon1 {
    display: inline-block;
    width: auto; /* Allow natural spacing */
    text-align: center;
    margin: 0; /* Ensure no margin is applied */
    padding: 0; /* Ensure no padding is applied */
}


#live-time {
    font-size: clamp(1.5rem, 5vw, 4rem);
    margin-top: 20px;
    text-align: center;
    font-family: 'Technology-Bold', sans-serif;
    display: inline-block;
}

#live-time span {
    user-select: none; /* Disable text selection */
    width: 1ch; /* Ensure each digit has the same width */
    display: inline-block;
    text-align: center;
}

@media (max-width: 600px) {
    .centered-content {
        font-size: 20vw;
    }

    #live-time {
        font-size: 20vw;
        margin-top: 20px;
    }

    h1 {
        font-size: 5vw;
    }

    p {
        font-size: 3vw;
    }
}

@media (min-width: 1200px) {
    .centered-content {
        font-size: 11rem;
    }

    #live-time {
        font-size: 11rem;
    }

    h1 {
        font-size: 6rem;
    }

    p {
        font-size: 2rem;
    }
}

