        /* Center the clock on the screen with a dark background */
        body {
            margin: 0;
            padding: 0;
            background-color: #121212;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Courier New', Courier, monospace;
        }

        /* Container styling */
        .clock-container {
            background-color: #1e1e1e;
            padding: 20px 40px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            border: 2px solid #333;
        }

        /* Clock text styling */
        .clock {
            font-size: 4rem;
            color: #00ffcc;
            text-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
            letter-spacing: 2px;
        }

