* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-weight: 300px;
    background-color: rgb(41, 34, 34);
    display: flex;
    flex: 1;
}

.main-clock {
    height: 400px;
    width: 400px;
    background-color: rgb(227, 227, 236);
    border-radius: 100%;
    border: 20px groove rgb(199, 25, 25);
    margin: 50px auto;
    position: relative;
}

.circle-clock {
    position: relative;
    height: 100%;
    width: 100%;
}

.numbers {
    text-align: right;
    font-size: 45px;
    color: #a34646;
}

.twelve {
    right: 45%;
    top: 1%;
    position: absolute;
}

.three {
    left: 92%;
    bottom: 42%;
    position: absolute;
}

.six {
    left: 45%;
    top: 88%;
    position: absolute;
}

.nine {
    right: 92%;
    bottom: 42%;
    position: absolute;
}

.hand {
    width: 45%;
    position: absolute;
    background: #9b0909;
    top: 50%;
    transform-origin: 100%;
    transform: rotate(90deg);
    transition: all 0.05s;
    transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.h-second {
    height: 2px;
}

.h-minute {
    height: 4px;
}

.h-hour {
    height: 8px;
}

.show-real-time {
    position: absolute;
    color: #a34646;
    left: 20%;
    bottom: -25%;
    font-size: 50px;
    letter-spacing: 5px;
}