@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2f363e;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 20px;
}

.title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}

#time {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

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

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

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

.circle svg circle:nth-child(2) {
  stroke: var(--clr);
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 0.5s linear;
}

.circle div {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.circle div span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 5px;
  text-transform: uppercase;
}

.ap {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

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

.dots::before {
  content: '';
  position: absolute;
  top: -6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--clr);
  box-shadow:
    0 0 20px var(--clr),
    0 0 60px var(--clr);
}

@media (max-width: 768px) {
  .circle {
    width: 150px;
    height: 150px;
  }

  .circle svg {
    width: 150px;
    height: 150px;
  }

  .circle div {
    font-size: 1.5rem;
  }
}
