* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(56 103 130);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.circle {
    position: relative;
    margin: 10vh auto;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 8px solid rgb(43 62 125);
    box-shadow: 0px 0px 20px 8px gray, inset 0px 0px 20px 3px rgb(16 16 16);
    background-color: rgb(112, 112, 112);
}

.dot {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(rgb(43 62 125), rgb(43 62 125));
    border-radius: 1em;
    box-shadow: 2px 2px 6px 1px gray;
}

.reddot {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px;
    width: 20px;
    height: 20px;
    background: rgb(232, 31, 31);;
    border-radius: 1em;
}

#hour, #minute, #second {
    transform-origin: bottom;
}

.hour {
    position: absolute;
    height: 95px;
    width: 33%;
    background-color: rgb(0, 0, 0);
    top: -80px;
    left: 10px;
}

.minutes {
    position: absolute;
    height: 115px;
    width: 26%;
    background-color: rgb(0, 0, 0);
    top: -100px;
    left: 11.1px;
}

.seconds{
    position: absolute;
    height: 146px;
    width: 11%;
    background-color: rgb(232, 31, 31);
    top: -131px;
    left: 13.5px;

}

.numbers {
    font-size: 2em;
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-shadow: 2px 2px 5px gray;
}

.num1 {
    position: absolute;
    top: 8%;
    right: 25%;
}

.num2 {
    position: absolute;
    top: 23%;
    left: 86%;
}

.num3 {
    position: absolute;
    top: 44%;
    left: 93%;
}

.num4 {
    position: absolute;
    top: 66%;
    left: 86%;
}

.num5 {
    position: absolute;
    top: 82%;
    left: 71%;
}

.num6 {
    position: absolute;
    top: 88%;
    left: 48%;
}

.num7 {
    position: absolute;
    top: 82%;
    left: 24%;
}

.num8 {
    position: absolute;
    top: 66%;
    left: 8%;
}

.num9 {
    position: absolute;
    top: 44%;
    left: 2%;
}

.num10 {
    position: absolute;
    top: 23%;
    left: 7%;
}

.num11 {
    position: absolute;
    top: 8%;
    left: 23%;
}

.num12 {
    position: absolute;
    top: 1%;
    left: 46%;
}


.digital {
    position: relative;
    margin: auto;
    width: 308px;
    height: 150px;
    border: 6px solid #0FA3B1;
    box-shadow: inset 0px 0px 31px -6px #B5E2FA;
    border-radius: 18px;
    font-family: Quicksand, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#hours {
    font-size: 4em;
    color: #EDDEA4;
    font-weight: 600;
    position: absolute;
    margin: 4px 12px;
}

#minutes {
    font-size: 70px;
    color: #EDDEA4;
    font-weight: 600;
    margin: 4px 12px;
    position: absolute;
    top: 55px
}

#seconds {
    font-size: 30px;
    position: absolute;
    bottom: 20px;
    left: 100px;
    color: #F9F7F3;

}

#date {
    font-size: 30px;
    position: absolute;
    top: 20px;
    left: 100px;
    color: #F7A072;

}

#day {
    font-size: 30px;
    position: absolute;
    top: 54px;
    left: 100px;
    color: #F7A072;

}

#month {
    font-size: 30px;
    position: absolute;
    top: 20px;
    left: 143px;
    color: #F7A072;

}

#year {
    color: #F7A072;
    font-size: 30px;
    position: absolute;
    bottom: 20px;
    left: 160px;
}