*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgb(43, 43, 43);
}

.clock-container {
  position: relative;
  display: flex;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: solid 5px rgb(255, 155, 0);
}

.number {
  --rotation: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: rotate(var(--rotation));
}

.number1 {
  --rotation: 30deg;
}
.number2 {
  --rotation: 60deg;
}
.number3 {
  --rotation: 90deg;
}
.number4 {
  --rotation: 120deg;
}
.number5 {
  --rotation: 150deg;
}
.number6 {
  --rotation: 180deg;
}
.number7 {
  --rotation: 210deg;
}
.number8 {
  --rotation: 240deg;
}
.number9 {
  --rotation: 270deg;
}
.number10 {
  --rotation: 300deg;
}
.number11 {
  --rotation: 330deg;
}

.hand {
  position: absolute;
  border-radius: 30%;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%);
  transform-origin: bottom;
  display: none;
}

#seconds-hand {
  height: 130px;
  width: 2px;
  background-color: rgba(0, 255, 155, 0.5);
}

#minutes-hand {
  height: 100px;
  width: 2px;
  background-color: rgba(0, 100, 255, 0.5);
}

#hours-hand {
  height: 80px;
  width: 4px;
  background-color: rgb(0, 228, 255);
}

#center {
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgb(0, 100, 255);
}
