body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    /* background-color: rgb(43, 43, 43);; */
}

.clock{
    height: 300px;
    width: 300px;
    border-radius: 150px;
    border: solid 5px #F95C32;
    box-shadow: 0px 0px 4px 4px rgba(0,0,0,0.2);
    background-color: #FEF2D0;
    position: absolute;
}

.clock .number {
    --rotation : 0;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    /* background-color: aquamarine; */
    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}

#seconds-hand{
    position: absolute;
    height: 130px;
    width: 2px;
    background-color: #1B1B2B;
    left: 149px;
    bottom: 149px;
    transform-origin: 0% 100%;
}

#minutes-hand {
    height: 100px;
    width: 4px;
    background-color: #1B1B2B;
    position: absolute;
    left: 149px;
    bottom: 149px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    transform-origin: 0% 100%;
}

#hours-hand {
    height: 70px;
    width: 8px;
    background-color: #1B1B2B;
    position: absolute;
    left: 150px;
    bottom: 148px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    transform-origin: 0% 100%;
}

#center {
    height: 15px;
    width: 15px;
    border-radius: 7.5px;
    /* background-color: rgb(252, 255, 55); */
    background-color: #1B1B2B;
    position: absolute;
    left: 140px;
    bottom: 143px;
}