::selection {
  background-color: #00FFF7;
  color: black;
}

body {
  scroll-behavior: smooth;
}

@keyframes moveAround {
  0% {
    top: 10%;
    left: 10%;
  }
  25% {
    top: 10%;
    left: 80%;
  }
  50% {
    top: 80%;
    left: 80%;
  }
  75% {
    top: 80%;
    left: 10%;
  }
  100% {
    top: 10%;
    left: 10%;
  }
}