/* =========================================================
   BASE STUFFS
   ========================================================= */

a {
  color: black;
  text-decoration: underline;
}

  a:hover {
    font-style: italic;
    text-decoration: underline wavy;
  }

  a[href="#"] {
    color: rgba(0, 0, 0, 0.5);
  }

body {
  font-family: 'GoetheOLW3', monospace;
  margin: 0;
  padding: 0;
  background-color: black;
}

li {
  list-style: none;
}


h1, h2, h3 {
  font-family: 'FsHakumoRegularV49Ky', monospace;
}


/* =========================================================
   .left-sidebar
   ========================================================= */

.left-sidebar {
  top: 0;
  left: 0;

  padding: 10px;

  background: darkred url(https://i.ibb.co/G6khsJK/image.png) bottom no-repeat;
  background-size: contain;
  background-blend-mode: soft-light;

  color: white;
  height: 100%;
  width: 20%;
  overflow: scroll;
  position: fixed;
}


/* -------------------------
   .left-sidebar > .nav
   ------------------------- */

.nav {
  background-color: rgba(0, 0, 0, .8);

  padding: 0 10px 20px 10px;
  margin: 10px;
}

  .nav a {
    color: white;
  }

    .nav [href="#"] {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
    }

  .nav summary h2 {
    display: inline-block;
    margin: 0;
    padding: 1px;
  }

  .nav details {
    padding: 10px 0;
  }

  .nav summary:not(.non-h2) {
    background-color: darkred;
    margin: 0 auto;
    color: black;
  }

  .nav .non-h2 {
    color: rgba(255, 255, 255, 0.5);
  }

  .nav > details > summary {
    margin: 0;
  }

  .nav > details > a {
    display: block;
    margin-left: 20px;
  }

    .nav > details > details {
      margin-left: 0;
    }

      .nav > details > details > summary {
        margin-left: 25px;
      }

      .nav > details > details > a {
        display: block;
        margin-left: 19.5px;
      }


/* -------------------------
   .left-sidebar > .button
   ------------------------- */

.button {
  text-align: center;

  background-color: rgba(0, 0, 0, .8);

  padding: 1px 5px;
  margin: 10px;
}

  .button a {
    color: white;
  }

  .button img {
    width: 48%;
    display: inline-block;
  }

  .button textarea {
    width: 50%;
    height: 45px;
    display: inline-block;
  }


/* -------------------------
   .left-sidebar > .buttons
   ------------------------- */

.buttons {
  text-align: center;
  margin: 10px;
}

  .buttons img {
    width: 88px;
    height: 31px;
  }


/* =========================================================
   .middle
   ========================================================= */

.middle {
  padding: 10px;

  color: white;
  overflow-y: scroll;
  width: 75%;
  margin: 0 auto;
  float: right;
}


/* -------------------------
   .middle > .header
   ------------------------- */

.header {
  text-align: center;
}

  .header marquee {
    width: 70%;
    height: 2vw;
    background-color: darkred;
    line-height: 0;
    color: black;
    text-shadow: rgba(0, 0, 0, 100) 0 0 30px;
    border: rgb(40, 0, 0) 2px solid;
  }



/* -------------------------------
everything above this is organized 
------------------------------- */

details li::before {
  content: var(--icon);
  margin-right: 5px;
}

.mobile-warning {
  background-color: black;
  color: white;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (orientation: portrait) {
  * {overflow: hidden;}

  .mobile-warning {
    display: flex;
  }

  .left-sidebar, .middle {
    display: none;
  }
}