* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle, #2c3e50, #000000);
}

h1{
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.container {
    position: relative;
}

.clock {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.clock span {
    position: absolute;
    transform: rotate(calc(30deg * var(--i)));
    inset: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}

.clock span b {
    transform: rotate(calc(-30deg * var(--i)));
    display: inline-block;
}

.center-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    z-index: 2;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.hand {
    position: absolute;
    bottom: 50%;
    width: 4px;
    background: var(--clr);
    transform-origin: bottom;
    transform: rotate(0deg);
    border-radius: 8px;
}

.hour {
    height: 60px;
    background: #ff3d58;
}

.minute {
    height: 80px;
    background: #00a6ff;
}

.second {
    height: 90px;
    background: #00ff00;
}
