/* Grundeinstellungen für die ganze Seite */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Die Box, in der die Uhr sitzt */
.clock-container {
    text-align: center;
    background-color: #1e1e1e;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 150, 0.1);
    border: 1px solid #333;
}

h1 {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Die eigentliche Uhrzeit */
#clock {
    font-size: 5rem;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace; /* Sieht aus wie Digital-Zahlen */
    color: #00ff99;
    text-shadow: 0 0 15px rgba(0, 255, 153, 0.5);
    margin: 10px 0;
}

/* Das Datum */
#date {
    font-size: 1.2rem;
    color: #aaa;
}