*{
    padding: 0;
    margin: 0;
}

body{
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.clock{
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: white;
    position: relative;
}

.dot{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 10px;
    background: black;
    border-radius: 50%;
    z-index: 10;
}

.hours{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: black;
    height: 50px;
    width: 10px;
    border-radius: 5px;
}

.mins{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: black;
    height: 75px;
    width: 10px;
    border-radius: 5px;
}

.secs{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: red;
    height: 75px;
    width: 5px;
}

.secs_dot{
    position: relative;
    top: 0%;
    left: 0%;
    transform: translateX(-25%);
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
}