* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;           /* you had 100vh / 102vh → standard is 100vh */
  background-color: #161616;
}

.svg {
  width: 300px;
  height: 300px;
}

.circle {
  fill: none;
  stroke: #202020;
  stroke-width: 20px;
}

.circle-loader {
  fill: none;
  stroke: #05ffc1;
  stroke-width: 20px;
  stroke-linecap: round;
  stroke-dasharray: 360;          /* most frequent value in your snippets */
  stroke-dashoffset: 100;         /* most frequent starting offset */
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  animation: load 10s infinite;   /* exactly as written multiple times */
}

@keyframes load {
  0% {
    stroke-dasharray: 360;
  }
  50% {
    stroke-dasharray: 1;
  }
  100% {
    stroke-dasharray: 360;
  }
}