body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #282828;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
}

.clock {
    font-size: 5rem;
    background-color: #444;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.clock span {
    padding: 10px;
    border-radius: 5px;
    background-color: #333;
}