@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; }

.content {
  width: calc(100% - 20px * 2);
  height: calc(100% - 20px * 2 - 160px);
  padding: 20px;
  background-color: #111;
  box-shadow: 0px 20px 80px white; }
  .content main {
    width: 800px;
    margin: auto;
    box-shadow: 0px 5px 30px black;
    border-radius: 5px;
    background-color: #222;
    padding: 20px 40px 40px 40px; }

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

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

/*# sourceMappingURL=style.css.map */
