* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    background: radial-gradient(circle, #01000f, #22191f, #1d012e);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    position: relative;
}

.clock {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(121, 112, 112, 0.25);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

span {
    font-weight: bold;
    position: absolute;
    transform: rotate(calc(30deg * var(--i)));
    inset: 15px;
    text-align: center;
}

span b {
    transform: rotate(calc(-30deg * var(--i)));
    display: inline-block;
    font-size: 20px;
}

.clock::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 20;
}

.hand {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hand i {
    position: absolute;
    width: 4px;
    border-radius: 8px;
    background-color: var(--clr);
    height: var(--h);
}

.play-pause {
    margin-top: 60px;
}

.play-pause i {
    cursor: pointer;
    font-size: 40px;
    color: #fff;
}

#pauseBtn {
    display: none;
}

#text {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}