@import url('https://fonts.googleapis.com/css2?family=Teko:wght@700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Teko', sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.num {
    position: absolute;
    top: -50%;
    left: -50%;
    transform-origin: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours { width: 500px; height: 500px; font-size: 5rem; color: #fff; }
.minutes { width: 300px; height: 300px; font-size: 3rem; color: #bbb; }
.seconds { width: 150px; height: 150px; font-size: 2rem; color: #ff3366; }

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