* {
  margin: 0;
  padding: 0;
}
body {
  background: #121212;
}
#border {
  transition: .9s all ease-in;
  margin: 30px auto;
  box-shadow: 0px 0px 27px #10ff10, -5px -2px 27px #1010ff;
}
.childs{
  color: #fff;
  z-index: 2;
}
.analog{
    height: 99vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.analogBorder {
  background: linear-gradient(24deg, blue, #10ff10);
  border-radius: 50%;
  height: 450px;
  width: 450px;
}
.analogBorder::after{
  content: "";
  position: absolute;
  transition: .9s all ease-in;
  height: 430px;
  width: 430px;
  background: #000;
  border-radius: 50%;
  margin: 10px 9px;
}
.digitalBorder {
  border-radius: 30px;
  width: 500px;
  background: linear-gradient(24deg, blue, #10ff10);
  height: 300px;
}
.digitalBorder::after{
  content: "";
  position: absolute;
  height: 280px;
  transition: .9s all ease-in;
  width: 480px;
  background: #000;
  border-radius: 30px;
  margin: 10px 9px;
}
.numbers {
  position: fixed;
  font-size: 65px;
}
.twelve {
  margin: 5px 180px;
}
.six {
  margin: 370px 204px;
}
.nine {
  margin: 186px 15px;
}
.three {
  margin: 186px 395px;
}
.midPoint {
  height: 20px;
  width: 20px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  margin: 215px 214px;
}
.hands {
  background: #fff;
  border-radius: 20px;
  position: absolute;
  transform-origin: bottom;
}
.hoursHand {
  height: 120px;
  width: 20px;
  margin: 103px 214px;
}
.minuteHand {
  height: 140px;
  width: 15px;
  margin: 85px 217px;
}
.secondHand {
  height: 150px;
  width: 6px;
  margin: 77px 221px;
}
body input[type="range"] {
  width: 45px;
  color: #10ff10;
  position: absolute;
  outline: none;
  padding: 0 3px;
  height: 25px;
  bottom: 10px;
  right: 20px;
  border-radius: 12px;
  background-color: #f4f4f4;
  overflow: hidden;
  -webkit-appearance: none;
  cursor: pointer;
}
body input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #10ff10;
  border-radius: 10px;
  box-shadow: -100px 0 0 100px #f4f4f4;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.digital{
  align-items: center;
  display: none;
  justify-content: center;
  text-align: center;
  transition: .8s all ease-in;
  height: 100vh;
  width: 100vw;
  position: fixed;
  color: #fff;
  top: 0px;
}
.t-block{
    font-size: 8em;
}
.box{
  margin: 0 25px;
}