*{
    box-sizing: border-box;
}

body{
    margin: 0;
    height: 100vh;
    background: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock{
    position: relative;
    width: 280px;
    height: 280px;
    background: #dcdcdc;
    border-radius: 50%;
    border: 6px solid #888;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.logo{
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    z-index: 2;
}

.numbers{
    position: absolute;
    width: 100%;
    height: 100%;
}

.num{
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.highlight{
    font-size: 26px;
    color: rgb(8, 8, 8);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.n12{
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}



.n3{
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}



.n6{
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}


.n9{
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}




.hands{
    position: absolute;
    width: 100%;
    height: 100%;
}


.hands div{
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    
}


.hour{
    height: 65px;
    width: 7px;
    background: #222;
    z-index: 3;
    border-radius: 50% 50% 0;
}


.minute{
    height: 90px;
    width: 5px;
    background: #222;
    z-index: 4;
    border-radius: 50% 50% 0;
}


.second{
    height: 100px;
    width: 2px;
    background: red;
    z-index: 5;
    border-radius: 50% 50% 0;
}

 
.center-dot{
    width: 18px;
    height: 18px;
    background: silver;
    border: 4px solid black;
    border-radius: 50%;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;              
    box-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
