html {
  background-color: lightgray;

  /* http://www.rw-designer.com/cursor-set/kawaiikittymd */
  cursor: url("../assets/cursor/default.cur"), default;
}

body {
  background-color: #333333;
  font-family: "Noto Sans", sans-serif;
  text-align: center;

  display: grid;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 0;
  height: 100vh;
}

span.star {
  z-index: 3;
}

div#meow {
  background-color: #fbfdfa;
  width: 80%;
  margin: auto;
  border-radius: 5%;
  box-shadow: 0.5em 0.5em 0.5em gray;
  animation: 600ms ease-in fade-in;
  z-index: 2;

  /* unselectable objects */
  /* https://stackoverflow.com/a/4448972/ */
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  /* http://ie.microsoft.com/testdrive/HTML5/msUserSelect/ */
  -ms-user-select: none;
  user-select: none;
}
div#meow > img {
  width: 60%;
}
div#meow > h1 {
  font-family: "Indie Flower", cursive;
  animation: 1000ms ease-in fade-in;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

footer {
  margin: auto auto 7% auto;
  animation: 1000ms ease-in fade-in;
  z-index: 2;
}
footer button#nice-button {
  width: 4em;
  height: 2em;
  font-size: 2em;
  color: #ff85a2;
}
footer button#nice-button:hover {
  /* cursor animation lol */
  /* https://jordaneldredge.com/blog/rendering-animated-ani-cursors-in-the-browser/ */
  animation-name: animate-pointer;
  animation-duration: 800ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes animate-pointer {
  0% {
    cursor: url("../assets/cursor/pointer1.cur"), auto;
  }
  100% {
    cursor: url("../assets/cursor/pointer2.cur"), auto;
  }
}

#tsparticles {
  position: absolute;
  z-index: 1;
}
