*{
    margin: 0;
    padding: 0;
}
h1{
    position: absolute;
    top: 6%;
    left: 40%;
}
.circle{
    position: absolute;
    width: 400px;
    height: 400px;
    border: 35px solid red;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 2px 4px 6px 4px black, 1px 1px 5px 3px black inset;
}

.minute::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 5px;
    height: 180px;
    background-color: black;
    transform-origin: top;
    transform: rotate(50deg);
}
.hour::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 5px;
    height: 180px;
    background-color: black;
    transform-origin: top;
    transform: rotate(10deg);
}

.sec::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 5px;
    height: 180px;
    background-color: black;
    transform-origin: top;
    transform: rotate(-50deg);
}
