body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgb(94, 47, 2);
  font-family: Arial, sans-serif;
}

.clock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: min(80vw, 400px);
  height: min(80vw, 400px);
  background: url('image.png') no-repeat center center;
  background-size: cover;
  border: 5px solid #ffffff;
  border-radius: 50%;
}

#center {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #ee03fa;
  border-radius: 50%;
  animation: pulse 1s infinite
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hour-number {
  position: absolute;
  width: 15px;
  /* height: 30px; */
  font-size: 16px;
  color: rgb(252, 7, 170);
  text-align: center;
  line-height: 0px; /* Vertically center text */
  transform-origin: 50% 200px; /* Center origin and offset from center */
}

.line {
  position: absolute;
  width: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-size: 14px;
  transform-origin: 0% 50%;
}

.hour-line {
  color: #03f9ce;
}

.minute-line {
  color: #45f90d;
}

.second-line {
  color: #f9e90d;
}

.hour-line, .minute-line, .second-line {
  text-shadow: 0 0 8px currentColor;
}
