  :root {
      /*--body-bg-image: url(/assets/wallpaper2.png);*/
      --header-image: url(/deltablog/assets/fountain.gif);
      /* colors */
      --content: #FFF8D9;
      --link-color: #FFC90E;
  }

  @font-face {
      font-family: "8-bit Operator Undertale Mono";
      src: url(/deltablog/assets/8-bit_operator_mono.ttf);
  }

  @font-face {
      font-family: "Greater Determination SB";
      src: url(/deltablog/assets/greater-determination-sb.otf);
  }

  html {
      margin: 0;
      height: 100%;
  }

  body {
      margin: 0;
      height: 100%;
      background-color: black;
      background-size: 150px;
      background-image: var(--body-bg-image);
      cursor: url(/deltablog/assets/cursor_auto.png),
          auto;
  }

  p {
      color: white;
      font-family: "8-bit Operator Undertale Mono", Monospace;
  }

  a {
      color: var(--link-color);
      text-decoration: none;
      font-weight: 100;
  }

  a:hover {
      cursor: url(/deltablog/assets/cursor_pointer.png),
          pointer;
  }

  h1,
  h2,
  h3 {
      font-weight: bold;
      color: white;
      font-family: "8-bit Operator Undertale Mono", Monospace;
  }

  h1 {
      font-size: 1.5em;
  }

  h2 {
      font-size: 1.25em;
  }

  * {
      box-sizing: border-box;
  }

  #container {
      max-width: 900px;
      margin: 0 auto;
  }

  #container a {
      font-weight: bold;
  }

  #headerAreaFlex {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  #header {
      width: 500px;
      height: 200px;
      background-image: var(--header-image);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100%;
  }

  /* navigation section!! */
  #navbar {
      height: 2.5em;
      width: 100%;
      font-family: "8-bit Operator Undertale Mono", Monospace;
  }

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

  #navbarbox {
      border: 2px solid #FFC90E;
  }

  #navbar li p {
      color: var(--link-color);
      margin: 0px;
  }

  li:hover {
      background-image: url('/deltablog/assets/links_heart.svg');
      cursor: url(/deltablog/assets/cursor_pointer.png), pointer;
  }

  li {
      list-style: none;
      padding: 5px 5px 5px 23px;
      background-repeat: no-repeat;
      background-position: left center;
      background-size: 15px;
      margin-left: 7px;
  }

  #flex {
      display: flex;
  }

  aside {
      width: 200px;
      padding: 20px;
      font-size: smaller;
  }

  main {
      flex: 1;
      padding: 20px;
      order: 2;
      border: 20px solid transparent;
      padding-top: 0px;
      border-image: url(/deltablog/assets/border.png) 26 round;
      font-family: "8-bit Operator Undertale Mono", Monospace;
  }

  #leftSidebar {
      order: 1;
  }

  #rightSidebar {
      order: 3;
  }

  footer {
      width: 100%;
      height: 40px;
      padding: 10px;
      text-align: center;
      color: white;
      font-family: "8-bit Operator Undertale Mono", Monospace;
  }

  .box p {
      background-color: white;
      color: black;
      border: 15px solid transparent;
      margin-top: 5px;
      margin-bottom: 5px;
      padding-left: 6px;
      padding-top: 0px;
      border-image: url(/deltablog/assets/bubble_border.png) 20;
      border-radius: 30px;
      font-family: "Greater Determination SB", Monospace;
  }

  .fleximage {
      display: flex;
  }

  .fleximage img {
      max-width: 100%;
      width: 100%;
  }

  .captions {
      display: flex;
      align-items: center;
      text-align: center;
  }

  .captions p {
      font-size: smaller;
      color: gray;
      margin: 5px 0px;
  }

  /* HOME */

  #spoilerwarning {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
  }

  #spoilerwarning img {
      width: 20px;
      height: 100%;
  }

  #spoilerwarning p {
      margin: 0px 5px;
  }

  #hometab {
      display: block;
  }

  #abouttab,
  #creditstab {
      display: none;
  }

  /* CHERUB */

  #cherub {
      display: none;
      width: 3em;
      height: 3em;
      background-image: url(/deltablog/assets/cherub.gif);
      background-repeat: no-repeat;
      position: absolute;
      transform: translate(10%, -70%);
      transition: 0.8s ease-out;
  }

  #cherub.done {
      width: 3em;
      height: 3em;
      background-image: url(/deltablog/assets/cherubdone.gif);
      background-repeat: no-repeat;
      position: absolute;
  }

  /* BELOW THIS POINT IS MEDIA QUERY */

  /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

  @media only screen and (max-width: 800px) {
      #flex {
          flex-wrap: wrap;
      }

      aside {
          width: 100%;
      }

      main {
          order: 1;
      }

      #leftSidebar {
          order: 2;
      }

      #rightSidebar {
          order: 3;
      }

      #navbar ul {
          flex-wrap: wrap;
      }
  }
