/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: "DepartureMono-Regular";
    src: url('/assets/fonts/DepartureMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

            :root {
                --header-image: url('https://www.8bitdah.com/uploads/artworks/12983696-6eda-40cd-a104-805d4a6baa73.gif');
                --body-bg-image: url('https://www.8itdash.com/uploads/artworks/76ca738c-5be9-440b-bb27-b8f89214774d.webp');
                --content: #43256E;
            }


/* =================================================================================================================== */


* {
      box-sizing: border-box;
}
 
body {
      font-family: 'DepartureMono-Regular', sans-serif;
      margin: 0;
      background-color: #08031A;
      color: #00ffd0;
      background-image: url(/assets/images/gifs/body.gif);
      background-size: 15%; 
      background-position: center;
      min-width:900px;
}


#container {
      width: 1200px;
      max-width: calc(100% - 40px);
      margin: 0 auto;
}


#flex {
      display: flex;
}





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

            #header {
                width: 100%;
                background-color: #a59f80;
                height: 180px;
                background-image: url(/assets/images/gifs/header.png);
                background-position: center 55%;
                background-size: 100%;
                background-repeat: no-repeat;
            }

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

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

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

            #navbar li a {
                color: #00ffd0;
                font-weight: 900;
                text-decoration: none;
            }

            #navbar li a:hover {
                color: #ffff7f;
                text-decoration: underline;
            }

#navbar .active {
      color:#ffff7f;
}

            aside {
                background-color: #121212;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

            main {
                background-color: #210019;
                flex: 1;
                padding: 20px;
                /* Removed the order line so elements align naturally */
            }
            
/* ARCHIVE LOGSSETTINGS BELOW */
            
            .journal-container {
  display: flex;
  gap: 15px;
  background: #210019;
  padding: 10px;
  border: 2px outset #43256e;
  margin-top: 15px;
}

.journal-sidebar {
  width: 160px;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1.5;
  border-right: 1px dashed #43256e;
  padding-right: 10px;
}

.log-section {
  margin-bottom: 22px;
}

.log-section b {
  color: #00ffd0;
  display: block;
  margin-bottom: 7px;
}

.log-section a {
  display: block;
  color: #7ffcff;
  margin-bottom: 5px;
}

.log-section a:hover {
  color: #ff66dd;
}

.journal-container iframe {
  flex: 1;
  min-width: 0;
  height: 350px;
  background: white;
  border: 2px inset black;
}