@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap");
.App {
  font-family: sans-serif;
}

.clock {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  /* top: 50px; */
  /* left: 50%;  */
  /* transform: translate(-50%, -50%); */
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: #444;
  text-align: center;
  background-color: #fff;
}

.clock::after {
  background-color: #ffffff;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-color: #444;
}

.hour_hand {
  position: absolute;
  width: 2px;
  height: 30px;
  background: #222;
  top: 30%;
  left: 47%;
  transform-origin: bottom;
}

.min_hand {
  position: absolute;
  width: 2px;
  height: 65px;
  background: #444;
  top: 22.5%;
  left: 46%;
  transform-origin: bottom;
}

.sec_hand {
  position: absolute;
  width: 2px;
  height: 78px;
  background: red;
  top: 10.5%;
  left: 50%;
  transform-origin: bottom;
}

.clock span {
  position: absolute;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}

.twelve {
  top: 10px;
  left: 46%;
}

.one {
  top: 10%;
  right: 26%;
}

.eleven {
  top: 10%;
  left: 26%;
}

.two {
  top: 25%;
  right: 10%;
}

.three {
  right: 10px;
  top: 46%;
}

.four {
  right: 30px;
  top: 67%;
}

.five {
  right: 60px;
  top: 76%;
}

.six {
  bottom: 5px;
  left: 48%;
}

.seven {
  left: 65px;
  top: 76%;
}

.eight {
  left: 30px;
  top: 67%;
}

.nine {
  left: 10px;
  top: 46%;
}

.ten {
  top: 25%;
  left: 10%;
}
