* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: salmon;
  font-family: "Courier New", Courier, monospace;
}
img {
  width: 70px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 60px;
  z-index: 2;
}
.clock {
  background-color: lightgray;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 5px solid darkgray;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  position: relative;
}
.numbers {
}
.numbers div {
  position: absolute;
  font-size: 27px;
  font-weight: bold;
  color: lightgoldenrodyellow;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.numbers .twelve {
  top: 6px;
  left: 50%;
  transform: translate(-50%);
}
.numbers .three {
  top: 50%;

  right: 6px;
  transform: translateY(-50%);
}
.numbers .six {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
.numbers .nine {
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.arrows {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.arrows::before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: rgb(110, 137, 110);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  z-index: 4;
}
.arrows div {
  background-color: #fff;
  width: 7px;
  position: absolute;
  height: 120px;
  transform-origin: bottom center;
  bottom: 50%;
  z-index: 3;
  border-radius: 50% 50% 0 0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.hours {
  height: 80px;
  transform: rotate(60deg);
}
.second {
  transform: rotate(250deg);
  background-color: goldenrod;
}
