*, *::after, *::before{
    box-sizing: border-box;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 27px;
    color: #ffffff;
}

#body{
    background: linear-gradient(63deg, #8EC5FC, #E0C3FC);
}
body {
    /* background: linear-gradient(63deg, #020202, #420779); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    gap: 50px;
}

.clock{
    width: 450px;
    height: 450px;
    background: rgba(70, 69, 69, 0.555);
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.603);
    position: relative;
}

.clock .number{
    --rotation: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotate(var(--rotation));
    padding: 15px;
}

.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} Default VAL*/

.number::before{
    content: '';
    width: 2px;
    height: 10px;
    background-color: white;
    position: absolute;
    transform: translate(8px, -125%);
    
}

.clock .hand{
    --rotation: 0;
    position: absolute;
    bottom: 50%;
    left: 50%;
    border: 1px solid white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(41, 41, 41);
    transform-origin: bottom;
    transform: translateX(-50%) rotate(calc(var(--rotation) * 1deg));
    z-index: 10;
}

.clock::after{
    content: '';
    position: absolute;
    background-color: black;
    z-index: 11;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.clock::before{
    content: '';
    position: absolute;
    background-color: rgba(150, 145, 145, 0);
    z-index: 12;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgb(131, 130, 130);
    transform: translate(-50%, -50%);
}


.clock .hand.seconds{
    width: 3.5px;
    height: 45%;
    background-color: red;
}

.clock .hand.minutes{
    width: 10px;
    height: 42.5%;
    border: none;
}

.clock .hand.hours{
    width: 12px;
    height: 25%;
    border: none;
}

.inputs{
    display: flex;
    gap: 35px;
    margin-top: -50px;
    background: rgba(70, 69, 69, 0.555);
    padding: 25px;
    border: 3px solid rgba(0, 0, 0, 0.603);
    border-radius: 15px;
    justify-content: center;
    align-items: center;
}
.color1, .color2{
    width: 100px;
    height: 40px;
}
.display{
    background: linear-gradient(63deg, #8EC5FC, #E0C3FC);
}
.select{
    font-size: 20px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(70, 69, 69, 0.555);
}
option{
    font-size: 20px;
    background: rgba(70, 69, 69, 0);
    border-radius: 12px;
}