<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body,html {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dde1e7;
    min-height: 100vh;
    text-align: center;
}

.clock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dde1e7;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    box-shadow: -3px -3px 7px #ffffff73,
    3px 3px 5px rgba(94, 104, 121, 0.288);
}

.clock::before {
    position: absolute;
    content: "";
    height: 220px;
    width: 220px;
    border-radius: 50%;
    background: #dde1e7;
    box-shadow: inset -3px -3px 7px #ffffff73,
    inset 3px 3px 5px rgba(94, 104, 121, 0.288);
}

.clock::after {
    position: absolute;
    content: "";
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: #dde1e7;
    box-shadow: -3px -3px 7px #ffffff73,
    3px 3px 5px rgba(94, 104, 121, 0.288);
}

.clock .center-nut {
    height: 15px;
    width: 15px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.clock .center-nut2 {
    position: absolute;
    height: 9px;
    width: 9px;
    background: #3498db;
    border-radius: 50%;
    z-index: 15;
}

.indicators div {
    position: absolute;
    width: 2px;
    height: 5px;
    background: #404040;
}

.indicators div:nth-child(1) {
    transform: rotate(30deg) translateY(-100px);
}

.indicators div:nth-child(2) {
    transform: rotate(60deg) translateY(-100px);
}

.indicators div:nth-child(3) {
    transform: rotate(90deg) translateY(-100px);
    background: #3498db;
}

.indicators div:nth-child(4) {
    transform: rotate(120deg) translateY(-100px);
}

.indicators div:nth-child(5) {
    transform: rotate(150deg) translateY(-100px);
}

.indicators div:nth-child(6) {
    transform: rotate(180deg) translateY(-100px);
    background: #3498db;
}

.indicators div:nth-child(7) {
    transform: rotate(210deg) translateY(-100px);
}

.indicators div:nth-child(8) {
    transform: rotate(240deg) translateY(-100px);
}


.indicators div:nth-child(9) {
    transform: rotate(270deg) translateY(-100px);
    background: #3498db;
}

.indicators div:nth-child(10) {
    transform: rotate(300deg) translateY(-100px);
}

.indicators div:nth-child(11) {
    transform: rotate(330deg) translateY(-100px);
}

.indicators div:nth-child(12) {
    transform: rotate(360deg) translateY(-100px);
    background: #3498db;
}

.sec-hand,.min-hand,.hr-hand {
    position: absolute;
}

.sec-hand, .sec {
    height: 180px;
    width: 180px;
    z-index: 6;
}

.min-hand, .min {
    height: 140px;
    width: 140px;
    z-index: 5;
}

.hr-hand, .hr {
    height: 110px;
    width: 110px;
    z-index: 4;
}

.sec::before {
    position: absolute;
    content: "";
    height: 110px;
    width: 3px;
    background: #3498db;
  
}

.sec::after {
    position: absolute;
    content: "";
    height: 35px;
    width: 7px;
    left: 88px;
    background: #3498db;
    top: 105px;
    border-radius: 20px;
}

.min::before {
    position: absolute;
    content: "";
    width: 4px;
    top: -5px;
    left: 64px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 70px solid #e95949;
}

.hr::before {
    position: absolute;
    content: "";
    width: 1px;
    right: 50px;
    top: -10px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 60px solid #303030;
}</pre></body></html>