body {
  background-image: url("./background.png");
  color: white;
  text-align: center;
}

p {
  text-shadow: 2px 2px black;
}

h1 {
  text-shadow: 2px 2px black;
}

h2 {
  text-shadow: 2px 2px black;
}

h3 {
  text-shadow: 2px 2px black;
}

/* The animation code */
@keyframes logo {
  from {
    transform: rotateX(90deg);
    }
  to {
    transform: rotateX(0deg);
    }
}

/* The animation code */
@keyframes splash {
  0% {
    transform: scale(1, 1);
    }
  50% {
    transform: scale(1.2, 1.2);
    }
  100% {
    transform: scale(1, 1);
    }
}

header {
  background-image: url("./header.png");
}

.Logo {
  animation-name: logo;
  animation-duration: 1s;
}

.Links {
  background-color: lightgray;
}


.splash {
  animation-name: splash;
  color: yellow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.Changelog {
  text-align: left;
}


.splashidle {
  color: yellow;
}