@keyframes bg-scroll {
  from {
    background-position: 100px 100px;
  }
  to {
    background-position: 0px 0px;
  }
}
@keyframes color-rotate {
  0% {
    filter: hue-rotate(0deg);
  }
  25% {
    filter: hue-rotate(20deg);
  }
  50% {
    filter: hue-rotate(0deg);
  }
  75% {
    filter: hue-rotate(-30deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}
html {
  background-color: #180040;
}

html, body {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  color: #fff;
  border: none;
  font-family: "Google Sans Code";
  font-size: 12px;
  font-weight: initial;
  font-style: normal;
}

header {
  display: flex;
  flex-direction: row;
  gap: 0px;
  height: 160px;
  align-items: flex-end;
}
header .middle {
  width: 100%;
  height: 20px;
  background-color: #1e1e1e;
}

nav {
  position: absolute;
  left: 640px;
  top: 120px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
nav a {
  background-color: #333;
  padding: 4px 10px 4px 10px;
  font-size: 1.5em;
  color: white;
  text-decoration: none;
}

.background {
  background-image: url("/assets/stars.gif");
  background-repeat: repeat;
  background-size: auto;
  animation: bg-scroll linear infinite 8s, color-rotate linear infinite 10s;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page {
  width: calc(100% - 20px * 2);
  height: calc(100% - 20px * 2 - 160px);
  padding: 20px;
  background-color: #111;
  box-shadow: 0px 20px 80px white;
  display: flex;
  flex-direction: column;
  gap: 0px;
  gap: 5px;
  align-items: center;
}
.page footer {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.page .content {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.page .content main {
  width: 800px;
  margin-bottom: auto;
  box-shadow: 0px 5px 30px black;
  border-radius: 0px;
  background-color: #222;
  padding: 20px 40px 40px 40px;
}
.page .content aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page .content aside p {
  margin: 5px;
}
.page .content aside sidebar {
  display: inline-block;
  box-shadow: 0px 5px 30px black;
  border-radius: 0px;
  background-color: #222;
  padding: 20px 40px 40px 40px;
  padding: 10px;
  margin-bottom: 20px;
}
.page .content aside sidebar.carousel {
  width: 88px;
}
.page .content aside sidebar.carousel .items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow-y: hidden;
}

small {
  color: #888;
  font-size: 0.85em;
}

code {
  padding: 2px;
  background-color: #333;
}

mark {
  background: transparent;
  color: #d57cff;
}

a {
  color: #907cff;
  text-decoration: none;
}

p, li {
  font-size: 1.2em;
}