body {
  background-color: #ffffff;
  margin: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: crisp-edges;
}
p {
  color: black;
  margin: 5px;
  text-shadow: 0 0 5px grey;
  animation-duration: 2s;
  animation-name: fade;
  user-select: none;
}
img {
  width: 50px;
  animation-duration: 2s;
  animation-name: fade;
  user-select: none;
}
br {
  user-select: none;
}
#filler {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

@keyframes fade {
  0% {opacity: 0;}
  100% {opacity: 1;}
}