body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
}
.face {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #8e9eab;
  outline: 10px solid #333;
  cursor: pointer;
  outline: 10px solid #333;
  box-shadow: inset 0 0 20px #0007;
}

.hour {
  position: absolute;
  width: 5px;
  height: 60px;
  left: 87.5px;
  top: 43px;
  border-radius: 3px 3px 1px 1px;
  transform-origin: 2px 47px;
  linear-gradient(90deg, #9ebd13 0%, #008552 100%)
  z-index: 1;
  animation: rotet 43200s linear infinite;
}
.minute {
  position: absolute;
  width: 4px;
  height: 80px;
  left: 88px;
  top: 25px;
  border-radius: 3px 3px 1px 1px;
  background-color: rgb(123, 9, 9);
  border-radius: 3px 3px 1px 1px;
  transform-origin: 2px 65px;
  z-index: 2;
  animation: rotet 3600s linear infinite;
}
.second {
  position: absolute;
  width: 10px;
  height: 10px;
  background: red;
  left: 85px;
  top: 85px;
  border-radius: 50px;
  border: 1px solid #1a0303;
  z-index: 3;

  animation: rotet 60s steps(60, end) 0s infinite;
}
.second::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 85px;
  left: 3px;
  border: -10px;
  background: red;
  border-radius: 2px;
  box-shadow: 5px 0 2px rgba(128, 128, 128, 0.2);
}
.second::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 2px;
  top: 2px;
  background: #555;
  border-radius: 50%;
}
.v-index {
  position: absolute;
  color: #333;
  font-size: 24px;
  z-index: 1;
  left: 80.5px;
  top: -25px;
}
.h-index {
  position: absolute;
  color: #333;
  font-size: 24px;
  top: 62px;
  left: 5px;
  transform: rotate(360deg);
  /* text-shadow: 0 158px 0 #333; */
  z-index: 1;
}
.t-index {
  position: absolute;
  color: #333;
  font-size: 24px;
  left: 160px;
  top: 60px;
  transform: rotate();
  z-index: 2;
}
.n-index {
  position: absolute;
  color: #333;
  font-size: 24px;
  left: 85px;
  top: 129px;
  z-index: 1;
}
@keyframes rotet {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
