.time {
  position: absolute;
  top: 20px;
  left: calc(50% - 75px);
  display: flex;
  color: white;

  opacity: 0;
  transition: 1s;
}

.time .circle {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.time .circle svg {
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(270deg);
}

.time .circle svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: #191919;
  stroke-width: 4;
  transform: translate(5px, 5px);
}

.time .circle svg circle:nth-child(2) {
  stroke: var(--clr);
  stroke-dasharray: 440;
}


.time div {
  position: absolute;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
}