body {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.clock {
    background-color: #34495e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#time,#date{
    font-size: 60px;
    color: #0bb14d;
    font-weight: bold;
    border: 1px solid;

}
#hhmmss,#ddmmyy{
    
    font-size: 30px;
    color: rgb(19, 16, 16);
    font-weight: bold;
}
#day{
    display: flex;
    justify-content: center;
    margin-left: 40%;
    margin-top: 10px;
    font-size: 30px;
    color: rgb(6, 5, 5);
    font-weight: bold;
    width: 12vh;
    height: 6vh;
    background: #0bb14d;
    border: 1px solid;
    border-radius: 50%;
}  
