/* clock */
    #clock {
		/*width:960px;*/
        background-color: #000; /* Black background */
        color: #0f0; /* Green text for a digital clock look */
        font-family: 'Courier New', monospace; /* Monospace font for digital clock feel */
        font-size: 48px; /* Large font size */
        text-align: center; /* Center the time */
        margin: 10px 0px;
    }
    @media only screen and (max-width:960px) {
        #clock { width:100%; }
    }

    #current-time {
        letter-spacing: 5px; /* Add spacing between the digits */
        text-shadow: 0 0 2px #0f0, 0 0 5px #0f0, 0 0 8px #0f0; /* Neon effect */
    }

    /* Style for the timezone */
    #timezone {
        display: inline-block;
        font-size: 48px; /* Same size as the time */
        letter-spacing: 5px;
        text-shadow: 0 0 2px #0f0, 0 0 5px #0f0, 0 0 8px #0f0; /* Neon effect */
        margin-left: 10px; /* Space between the time and timezone */
    }

/* responsive */
    @media only screen and (max-width:960px) { 
        #current-time,#timezone { font-size:16pt; }
    }