*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font: bold 12px Arial, Helvetica, sans-serif;
    background-color: black;
}
.clock{
    border: 10px solid #606066;
    color: white;
    padding: 40px;
    border-radius: 10px;
    background-color: #222222;
}
.clock:hover{
    box-shadow: 0px 0px 20px 20px;
    transition: all  1s;
    transform: scale(1.2);
}
#Date{
    font-size: 20px;
    text-align: center;
}
.clock ul{
    list-style: none;
    display: flex;
    font-size: 90px;
    gap: 15px;
}