*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #10101E;
}
.datetime{
    color: #fff;
    background: #10101E;
    font-family: "segoe UI",sans-serif;
    /* width: 360px; */
    /* height: 15px 10px; */
    /* border: 3px solid #2e94e3; */
    /* border-radius: 5px; */
    -webkit-box-reflect: below 1px linear-gradient(transparent,rgba(255,255,255,0.1));
    transition-property: background, box-shadow;
}
#hour,#minuts,#seconds{
    border: 4px solid #2e94e3;
    padding: 35px;
    border-radius: 50%;
    width: 80px;
}
#hour:hover,#minuts:hover,#seconds:hover{
  background: #2e94e3;
}

.date{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
    padding: 30px;
}
.time{
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.time span:not(:last-child){
    position: relative;
    margin: 0 6px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
}
.time span:last-child{
    background: #2e94e3;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 0 5px;
    border-radius: 3px;
}
/* .datetime:hover{
    background: #2e94e3;
    box-shadow: 0 0 30px #2e94e3;
} */

