#skip-to-content {
  position: absolute;
  font-family: terminus;
  color: #c7ef86;
  text-align: center;
  font-size: 16px;
  padding: 16px;
  z-index: 99;
  background-color: #222;
  margin: 8px;
  top: -100px;

  &:focus {
    top: 0;
  }
}

header {
  margin: 0;
  padding: 0;

  .gradient {
    width: 100%;
    height: 128px;
    background-image: linear-gradient(to right, #000, #a24b4b, #826f27, #000);
  }

  #wrapper-header {
    display: flex;
    margin: auto;
    justify-content: flex-start;
    width: 95vw;
    z-index: 2;

    > a {
      margin: auto auto auto 0;
    }

    nav {
      color: #aeaeae00;
      font-family: "terminus", monospace;
      text-shadow: 0px 0px 0px white, 1px 0px 0 #d0d0d0, 2px 0px 0 #979797c9, 3px 0px 0 #7b7b7bd1, 4px 0px 0 #5e5e5ede, 5px 0px 0 #26262680, 5px 0px 0 #17171794, 6px 0px 0 #13131396, 7px 0px 0 #00000026, 8px 0px 0 #0000002e,2px 2px 10px black;
      font-weight: lighter;
      padding: 10px;
      font-size: 32px;
      margin: auto 0;

      a {
        text-decoration-line: underline;
        color: #aeaeae00;
      }

      /**
       * breakpoint: mobile;
       */
      @media only screen and (max-width: 479px){
        font-size: 18px;
      }

      /**
       * breakpoint: mobile;
       */
      @media only screen and (max-width: 649px){
        font-size: 24px;
      }
    }

    img {
      width: calc(96px * 3);
      height: 90px;
      image-rendering: pixelated;
    }

    /**
     * breakpoint: desktop-16x9;
     */
    @media only screen and (min-width: 1224px){
      width: 1190px;
    }
  }

  /**
   * breakpoint: tablet;
   */
  @media only screen and (max-width: 1023px) {
    .gradient{
      height: 200px;
    }

    #wrapper-header{
      display: grid;
      justify-content: unset;
      width: unset;

      a {
        margin: .25rem auto;
      }

      h1 {
        margin: 0;
      }
    }
  }
}
