@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+IS:wght@100..400&display=swap");
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: #222;
  background-color: #ececec;
  font-size: clamp(1rem, 2vw + 0.5rem, 2rem);
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cursor-favicon {
  position: fixed;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  transition: opacity 120ms ease-out;
}

#cursor-favicon[data-started="1"] {
  opacity: 1;
}

.title {
  overflow: hidden;
  padding: 36px 12px;
}
.title span {
  position: relative;
  font-family: "Playwrite IS", cursive;
  font-size: 1.4em;
}
.title span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 63%;
  translate: -50% 0;
  width: 250%;
  aspect-ratio: 1/1;
  z-index: -1;
  border: 30px solid #a8de97;
  border-radius: 50%;
  transition: --mask-progress 0.5s;
  transition-delay: 0.3s;
  mask-image: conic-gradient(from -27deg, #000 var(--mask-progress), #0000 0);
}
@starting-style {
  .title span:before {
    --mask-progress: 0%;
  }
}
@media (max-width: 768px) {
  .title span:before {
    border-width: 20px;
  }
}

@property --mask-progress {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 12%;
}