    .circley {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 100vmax;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoist {
    position: absolute;
    width: 160px;
    height:160px;
    background: url("/assets/images/avatar.webp");
    background-size: cover;
    border-radius: 100vmax;
    background-position: center;
}

.texti {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: consolas;
    color: #fff;
    font-size: 15px;
    animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

.texti span {
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0 100px;
}
.animgrad{
        background: linear-gradient(-45deg, #020a18, #111111, #111111);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#stalker {
  position: fixed;
  margin-top: -15px;
  margin-left: -15px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  opacity: 30%;
  border-radius: 100%;
  pointer-events: none;
  transition: transform ease-out 100ms;
  z-index: 1999;
}

#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 100%;
  pointer-events: none;
  z-index: 2000;
  transition: transform ease-out 10ms;
}

@media (max-width: 768px) { 
  #stalker,
  #cursor {
    display: none;
  }
}