* {
  box-shadow: border-box;
}

body {
  background-color: #1a1d1f;
  color: #f1f3f3;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#tinyClock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.5rem;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.16s ease, box-shadow 0s;
  opacity: 0;
  -webkit-animation: fadeIn 0.4s 0.4s ease forwards;
          animation: fadeIn 0.4s 0.4s ease forwards;
}
#tinyClock::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  width: 6px;
  border-radius: 100%;
  transition: 0.16s ease;
  background-color: rgba(215, 255, 255, 0);
}
#tinyClock:hover {
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0.5rem 0.5rem 0 0 rgba(0, 0, 0, 0.18);
}
#tinyClock:hover .hands-container {
  box-shadow: 0 0 0 4px white;
}
#tinyClock:hover::before {
  background-color: #d7ffff;
}

#stop {
  content: "";
  position: absolute;
  top:58%;
  left:47.7%;
}

.hands-container {
  position: relative;
  display: block;
  height: 6rem;
  width: 6rem;
  border-radius: 100%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  transition: 0.16s ease;
}

.hand {
  position: absolute;
  top: 50%;
  left: calc(50% - 2px);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 2px 50%;
  height: 6px;
  width: 40%;
  border-radius: 20px;
  background-color: #ffffff;
}
.hand#hHand {
  width: 25%;
}
.hand#sHand {
  height: 4px;
  background-color: rgba(255, 180, 180, 0.6);
}