
body {
    background-color: #0f0f0f; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace; 
}

.clock {
    color: #00ff00; 
    font-size: 5rem;
    font-weight: bold;
    border: 5px solid #333;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2); 
    background-color: #1a1a1a;
}

.clock {
    display: grid;         
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
}

#milli_seconds {
    font-size: 0.5em;
    color: #00ff00;
    margin-left: 5px;
}

#ampm {
    font-size: 0.3em;
    color: #888;
    margin-left: 5px;
}

.other {
    font-size: 1.2rem;
    color: #008000; 
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-weight: normal;
    letter-spacing: 2px;
}

 /* Mobile-Screens below 480px */
@media (max-width: 480px) {
    .clock {
        font-size: 2.2rem; 
        padding: 10px 15px;
        border-width: 3px;
        width: 90%; 
    }
    
    #time {
        display: flex;
        justify-content: center;
        align-items: baseline;
        flex-wrap: wrap; 
    }

    .other {
        font-size: 0.8rem;
        flex-wrap: wrap; 
        gap: 10px;
    }
}




