@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #3966ad; 
    margin: 0;
    padding: 0;
}

/* Clock container stays centered */
.clock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Clock text styling */
h1 {
    font-size: 12rem;
    color: #fff;
    font-family: 'Roboto Mono', monospace; /* SEO-friendly font */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure numbers don't shift */
h1 span {
    display: inline-block;
    min-width: 2ch; /* Keeps number width fixed */
    text-align: center;
}

/* 🔹 Make it responsive for mobile screens */
@media (max-width: 768px) {
    h1 {
        font-size: 8rem; /* Reduce font size for tablets */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 5rem; /* Reduce font size for phones */
    }
}
