@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");

body {
  background-color: #212121;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}

.centered {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.emoji {
  font-size: 70px;
}

.neon {
  color: #c76dff;
  text-shadow: 0 0 13px rgba(199, 109, 255, 0.7),
      0 0 43px rgba(199, 109, 255, 0.7), 0 0 103px rgba(199, 109, 255, 0.7);
}

@keyframes fade {
  0%,
  100% {
    opacity: 0;
  }
  10%,
  90% {
    opacity: 1;
  }
}

#fade-word {
  position: relative;
  animation: fade 3s infinite;
}
