@font-face {
  font-family: "Pixel Operator Mono";
  src: url("/assets/fonts/pixeloperatormono.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Pixel Operator Mono";
  src: url("/assets/fonts/pixeloperatormonohb.ttf");
  font-weight: bold;
}
body {
  background: url("/assets/images/chainlink.gif");
  color: #ffffff;
  font-family: "Pixel Operator Mono", "Courier New", monospace;
  margin: 0;
}

* {
  box-sizing: border-box;
}

#container {
  max-width: 80%;
  margin: 0 auto;
}

#container a {
  color: #ff0000;
  font-weight: bold;
}

#container a:hover {
  color: #f2f2f2;
}

#header {
  Width: 100%;
  background-color: #000000;
  height: 198px;
  background-image: url("/assets/images/hyfy_header.png");
}

#navbar {
  height: 40px;
  background-color: #2e2e2e;
  width: 100%;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 8px;
}

/* navigation links*/
#navbar li a {
  color: #ffffff;
  /* navbar text color */
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
  color: #ff0000;
  text-decoration: underline;
}

#flex {
  display: flex;
}

aside {
  background-color: #454545;
  width: 25%;
  padding: 20px;
}

main {
  background-color: #000000;
  flex: 1;
  padding: 20px;
  order: 2;
}

#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
}

footer {
  background-color: #2e2e2e;
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  #container {
    max-width: 100%;
  }
  #flex {
    flex-wrap: wrap;
  }
  aside {
    width: 100%;
  }
  main {
    order: 1;
  }
  #leftSidebar {
    order: 2;
  }
  #rightSidebar {
    order: 3;
  }
  #navbar ul {
    flex-wrap: wrap;
  }
}

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