body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: url("Tanjiro.jpg") no-repeat center center/cover;
}
.clock {
  width: 775px;
  height: 760px;
  border-radius: 100%;
  border: 2px solid darkgrey 0.3;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  position: relative;

  margin-left: 6px;
  margin-bottom: 97px;
}

.numbers div {
  position: absolute;
  font-size: 60px;
  font-family: cursive;
  font-weight: bold;
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.twelve {
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.three {
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.six {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.nine {
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.arrows {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrows::before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: rgb(16, 29, 29);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  z-index: 4;
}

.arrows div {
  width: 7px;
  height: 260px;
  background-color: white;
  position: absolute;
  bottom: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  border-radius: 50% 50% 0 0;
  transform-origin: bottom center;
  z-index: 3;
}

.arrows .hour {
  height: 150px;
  transform: rotate(30deg);
}

.arrows .second {
  background-color: rgb(0, 0, 0);
  transform: rotate(250deg);
}
