/* Dark mode */

body {
  background-color: #333;
  color: #fff;
}

/* center everything but still respect divs as line breaks */

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

.text {
  max-width: 500px;
}

/* Put some space between divs */

div {
  margin: 20px 0;
}

.loader {
  width: 2px;
  height: 30px;
  display: inline-block;
  position: relative;
  border-radius: 20px;
  color: #ddd;
  box-sizing: border-box;
  animation: animloader 0.6s linear infinite;
}

@keyframes animloader {
  0% {
    box-shadow: 20px -10px, 40px 10px, 60px 0px;
  }

  25% {
    box-shadow: 20px 0px, 40px 0px, 60px 10px;
  }

  50% {
    box-shadow: 20px 10px, 40px -10px, 60px 0px;
  }

  75% {
    box-shadow: 20px 0px, 40px 0px, 60px -10px;
  }

  100% {
    box-shadow: 20px -10px, 40px 10px, 60px 0px;
  }
}