:root {
  --width: 45%;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(24, 24, 24);

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}



.single-clock {
  display: grid;
  grid-template-columns: repeat(8, auto);
}

.gap-con {
  display: grid;
  align-items: center;
}

.gap {
  margin: 10px;
  color: rgb(120, 120, 120);
}

.single-clock-con {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5px;
}

.clock-circle {
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;

  background-image: radial-gradient(circle at center,
      rgb(41, 41, 41) 0%,
      rgb(0, 0, 0) 100%);


}

.line {
  position: absolute;
  top: calc(50% - 1.5px);
  right: calc(50%);
  width: var(--width);
  height: 3px;
  background-color: #b0ca1c;
  border-radius: 20%;
  padding: 0;

  transition: transform 0.5s ease-in-out;

}

.line-one {
  transform-origin: right center;

}

.line-two {

  transform-origin: left center;
  right: calc(50% - var(--width) + 0.39px);
}


.pos-one-1 {
  transform: rotate(-90deg);
}

.pos-three-2 {
  transform: rotate(90deg);
}

.pos-four-12 {
  transform: rotate(90deg);
}

.pos-five-1 {
  transform: rotate(90deg);
}

.pos-six-2 {
  transform: rotate(-90deg);
}



.pos-seven-1 {
  transform: rotate(-45deg);
}

.pos-seven-2 {
  transform: rotate(135deg);
}

.app-footer {

  position: fixed;
  bottom: 0;
  color: #b0b0b0;
  border-top: 1px solid #333;
  padding: 8px 15px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.75em;
}

.footer-link {
  margin: 3px 0;
}

.app-footer a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.app-footer a:hover {
  color: #79aee5;
  text-decoration: underline;
}