 *,*::after,*::before{
     box-sizing: border-box;
     font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
 }
 body{
     background: linear-gradient(to right, rgb(18, 241, 103), #30afc5);
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     overflow: hidden;
     
 }
 .clock{
     height: 500px;
     width: 500px;
     background-color:rgb(255,255,255,0.6);
     border-radius: 50%;
     border: 5px solid black;
     position: relative;
     box-shadow: 0px 4px 6px -1px black;
    
 }
 .clock .date{
    position: absolute;
    width: 100px;
    height: 25px;
    background: rgb(43, 97, 114);
    top: 25%;
    left: 40%;
    color: blanchedalmond;
    padding-bottom: 10px ;
    border-radius:7px ;
    opacity: .7;
    font-family: monospace;
    font-weight: 700;
    text-shadow:2px 0px 2px black;

    }
 .clock::after{
     content: '';
     position: absolute;
     background-color: black;
     width: 18px;
     height: 18px;
     left: 50%;
     top: 50%;
    z-index: 11;
    border-radius: 50%;
    transform: translate(-50%,-50%);
 }
 .clock .number{
   --rotation :0 ; 
     width: 100%;
     height: 100%;
     position: absolute;
     text-align: center;
     font-size: 45px;
     transform: rotate(var(--rotation));

 }
.clock .number1{--rotation :30deg }
.clock .number2{--rotation :60deg }
.clock .number3{--rotation :90deg }
.clock .number4{--rotation :120deg }
.clock .number5{--rotation :150deg }
.clock .number6{--rotation :180deg }
.clock .number7{--rotation :210deg }
.clock .number8{--rotation :240deg }
.clock .number9{--rotation :270deg }
.clock .number10{--rotation :300deg }
.clock .number11{--rotation :330deg }
.clock .number12{--rotation :360deg }

.clock .hand{
    --rotation: 0 ;
    position: absolute;
    background-color: #333333;
    bottom: 50%;
    left: 50%;
    
    transform-origin: bottom;
    border-top-left-radius: 10px ;
    border-top-right-radius: 10px ;
    border:1px solid white;
    transform: translateX(-50%) rotate(calc(var(--rotation)* 1deg));
    z-index: 10;

}
 .clock .hand.second{
    height: 40%;
    width: 5px; 
    background-color: red; 
}
.clock .hand.minute{
    height: 35%;
    width: 10px; 
    background-color: rgb(49, 49, 9); 
}
.clock .hand.hour{
    height: 30%;
    width: 15px; 
    background-color: black; 
}