*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#00aaff), to(#00ffea));
  background: linear-gradient(#00aaff, #00ffea);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.clock {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: 2px solid #363636;
  position: relative;
}

.clock .number {
  --rotation:0;
  font-size: 1.5rem;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transform: rotate(var(--rotation));
          transform: rotate(var(--rotation));
}

.clock .number.number1 {
  --rotation:30deg;
}

.clock .number.number2 {
  --rotation:60deg;
}

.clock .number.number3 {
  --rotation:90deg;
}

.clock .number.number4 {
  --rotation:120deg;
}

.clock .number.number5 {
  --rotation:150deg;
}

.clock .number.number6 {
  --rotation:180deg;
}

.clock .number.number7 {
  --rotation:210deg;
}

.clock .number.number8 {
  --rotation:240deg;
}

.clock .number.number9 {
  --rotation:270deg;
}

.clock .number.number10 {
  --rotation:300deg;
}

.clock .number.number11 {
  --rotation:330deg;
}

.clock .number.number12 {
  --rotation:360deg;
}

.clock .hand {
  --rotation:0;
  position: absolute;
  bottom: 50%;
  left: 50%;
  background-color: #363636;
  height: 50%;
  width: 10px;
  border: 1px solid #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  z-index: 10;
  -webkit-transform: translate(-50%) rotate(calc(var(--rotation) * 1deg));
          transform: translate(-50%) rotate(calc(var(--rotation) * 1deg));
}

.clock .hand.hour {
  width: 10px;
  height: 35%;
  background-color: #363636;
}

.clock .hand.minute {
  width: 7px;
  height: 40%;
  background-color: #363636;
}

.clock .hand.second {
  width: 3px;
  height: 45%;
  background-color: red;
}

.clock::after {
  content: '';
  position: absolute;
  background-color: #363636;
  z-index: 11;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
/*# sourceMappingURL=style.css.map */