#time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px; /* doubled */
  color: #FFF;
}

#time .circle {
  position: relative;
  width: 300px; /* doubled */
  height: 300px; /* doubled */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#time .circle svg {
  position: relative;
  width: 300px; /* doubled */
  height: 300px; /* doubled */
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

#time .circle svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: #191919;
  stroke-width: 8; /* doubled */
  -webkit-transform: translate(10px, 10px); /* doubled */
          transform: translate(10px, 10px); /* doubled */
}

#time .circle svg circle:nth-child(2) {
  stroke: var(--clr);
  stroke-dasharray: 880; /* doubled */
}

#time div {
  position: absolute;
  text-align: center;
  font-weight: 500;
  font-size: 8rem; /* doubled */
}

#time div span {
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(20%); /* doubled */
          transform: translateX(-50%) translateY(20%); /* doubled */
  font-weight: 200;
  font-size: 1.8rem; /* doubled */
  letter-spacing: 0.2rem; /* doubled */
  text-transform: uppercase;
}

#time .ap {
  position: relative;
  font-size: 2rem !important; /* doubled */
}

.dots {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dots::before {
  content: '';
  position: absolute;
  top: -6px; /* doubled */
  width: 30px; /* doubled */
  height: 30px; /* doubled */
  background: var(--clr);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 40px var(--clr), 0 0 120px var(--clr); /* doubled */
          box-shadow: 0 0 40px var(--clr), 0 0 120px var(--clr); /* doubled */
}
