@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: white;
    font-family: "outfit";
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
}

.container {
    position: relative;
}

.clock {
    background-color: #111;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background-color: rgba(240, 248, 255, 0.288);
    border: 1px solid aliceblue;
    box-shadow: 0px 0px 30px black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock span {
    position: absolute;
    transform: rotate(calc(30deg * var(--i)));
    inset: 12px;
    text-align: center;
}

.clock span b {
    transform: rotate(calc(-30deg * var(--i)));
    display: inline-block;
}

.clock sup {
    font-size: 12px;
}

.clock::before {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
    background-color: rgb(255, 255, 255);
    z-index: 9;
}

.hand {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hand i {
    position: absolute;
    height: var(--h);
    width: 4px;
    background-color: var(--clr);
    border-radius: 8px;
}