body {
  color: white;
  margin: 20px auto;
  max-width: 900px;
  padding: 0;
}

html {
  background-color: rgb(16, 98, 118);
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

#title {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

#profilepic {
  border: 4px solid white;
  transform: rotate(-15deg);
  background: white;
  color: black;
  width: fit-content;
  line-height: 0;
  text-align: center;
  height: min-content;
}

#profilepic:hover {
  transform: rotate(-20deg);
}

#profileblock {
  display: flex;
  flex-direction: row;
}

#profileblock > div:nth-child(2) {
  margin-left: 20px;
}

.content-block {
  border: 10px ridge rgb(221, 31, 215);
  border-radius: 10px;
  background-color: rgb(164, 125, 191);
  padding: 10px;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

#scrollingbg {
  display: block;
  position: fixed;
  background-image: url("./img/tex/starstwinkle.gif");
  width: 300vw;
  height: 300vh;
  top: 0;
  left: 0;
  z-index: -10000;
  animation: scrollingBGSlide 3.5s linear infinite;
}

@keyframes scrollingBGSlide {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-234px) translateX(-304px);
  }
}

span.highlighter {
  color: yellow;
  text-transform: uppercase;
  animation: hueshift 2s linear infinite;
}

@keyframes hueshift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

#nav {
  justify-content: center;
}

#nav>* {
  margin: 5px;
  margin-bottom: -10px;
}

#nav>a:hover {
  filter: invert(100%);
}

#pageContent {
  margin-top: 0px;
}

img.pixel {
  image-rendering: pixelated;
}
