* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
:root {
  --primary-color: #000000;
  --white-color: #000000;
  --black-color: #ffffff;
  --blue-color: #ff0000;
  --transparent-color: #00000000;
}
body {
  display: flex;
  min-height: 100vh;
  align-items: top;
  justify-content: center;
  background: var(--transparent-color);
  
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.container .clock {
  display: flex;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-image: url("https://www.funhitmixradio.com/images/timer1.png");
  border: var(--blue-color) 1px solid;
  position: relative;
}
.clock label {
  position: absolute;
  inset: 3px;
  text-align: center;
  transform: rotate(calc(var(--i) * (360deg / 12)));
  
}
.clock label span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  transform: rotate(calc(var(--i) * (-360deg / 12)));
}
.container .indicator {
  position: absolute;
  height: 6px;
  width: 6px;
  display: flex;
  justify-content: center;
}
.indicator::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 100;
  background: var(--white-color);
  border: 2px solid var(--blue-color);
}
.indicator .hand {
  position: absolute;
  height: 60px;
  width: 2px;
  bottom: 0;
  border-radius: 20px;
  transform-origin: bottom;
  background: var(--blue-color);
}
.hand.minute {
  height: 50px;
  width: 3px;
  background: var(--white-color);
}
.hand.hour {
  height: 40px;
  width: 6px;
  background: var(--white-color);
}
