/* style.css */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.clock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clock {
    font-size: 60px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: #333;
}

#analogClock {
    display: block;
    margin: 30px auto 0 auto;
    background: #fafafa;
    border-radius: 50%;
    box-shadow: 0 0 10px #ccc;
}

