* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper .clock {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1), 0 25px 45px rgba(0, 0, 0, 0.1);
}

.clock label {
    position: absolute;
    inset: 20px;
    text-align: center;
    transform: rotate(calc(var(--i)* 360deg / 12));
}

.clock label span {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transform: rotate(calc(var(--i) * (-360deg / 12)));
}

.wrapper .hands {
    position: absolute;
    height: 10px;
    width: 10px;
    display: flex;
    justify-content: center;
}

.hands::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: 100;
    background-color: #fff;
    border: 4px solid #fff;
}

.hands .hand {
    position: absolute;
    height: 130px;
    width: 4px;
    bottom: 0;
    border-radius: 25px;
    background: #fff;
    transform-origin: bottom;
}

.hand.minute {
    width: 5px;
    height: 120px;
    background: #fff;
}

.hand.hour {
    width: 8px;
    height: 100px;
    background: #fff;
}