/*FONTS*/
@font-face {
  font-family: "PressStart";
  src: url("../fonts/PressStart2P.ttf");
}

@font-face {
  font-family: "runes_uf";
  src: url("../fonts/runes.TTF");
}

/*GLOBAL STYLES*/
body {
  font-family: "PressStart", serif;
  background-color: #090a0a;
  margin: 0;
  padding: 0;
}

/*BANNER*/
#banner {
  text-align: center;
}

/*NAVBAR*/
#navbar {
  width: 850px;
  margin: 0 auto;
  background-color: #090a0a;
  border: 3px groove #3f1d16;
  box-sizing: border-box;
  margin: 10px auto 10px auto;  /* 5px gap above and below navbar */
  padding: 8px;
  text-align: center;
  font-size: 15px;
}

#navbar a {
  color: #d5b95d;
  text-decoration: none;
  margin: 0 15px;
  transition: text-shadow 0.2s, color 0.2s;
}

#navbar a:hover {
  color: #d5b95d;
  text-shadow: 0 0 8px #d5b95d;
}

/*DIVIDER*/
hr {
  border: none;
  border-top: 3px solid #d5b95d;
  margin: 10px 0;
}

/*TEXT EFFECTS*/
h1 {
  color: #d5b95d;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

h2 {
  color: #d5b95d;
  text-shadow: 2px 2px 4px #000000;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

h3 {
  color: #d5b95d;
  text-shadow: 2px 2px 4px #000000;
  text-align: left;
  margin: 0;
  line-height: 1.5;
}

p {
  color: #c8c8c8;
  text-shadow: 1px 1px 3px #000000;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

small {
  color: #97623f;
  font-size: 12px;
  text-shadow: 1px 1px 3px #000000;
  display: block;
  margin-top: -5px;
  margin-bottom: 10px;
}
  
/*Text effects for links*/
h1 a, h2 a, h3 a {
  color: #4074a5;
  text-decoration: none;
}

h1 a:hover, h2 a:hover, h3 a:hover {
  color: #4074a5;
  text-decoration: underline;
}

h1 a:active, h2 a:active, h3 a:active {
  color: #2a4d6e;
  text-decoration: none;
}

h1 a:visited, h2 a:visited, h3 a:visited {
  color: #2a4d6e;
  text-decoration: none;
}

h1 a:visited:hover, h2 a:visited:hover, h3 a:visited:hover {
  color: #2a4d6e;
  text-decoration: underline;
}

    /* Plain paragraph links */
    a {
      color: #4074a5;
      text-decoration: none;
    }

    a:hover {
      color: #4074a5;
      text-decoration: underline;
    }

    a:active {
      color: #2a4d6e;
      text-decoration: none;
    }

    a:visited {
      color: #2a4d6e;
      text-decoration: none;
    }

    a:visited:hover {
      color: #2a4d6e;
      text-decoration: underline;
    }

/* =====================
   MAIN CONTENT
   Standard full-width content box used on all non-sidebar pages
===================== */
#main-content {
  width: 850px;
  min-height: 600px;
  margin: 0 auto 30px auto;
  border: 3px groove #3f1d16;
  padding: 10px;
  box-sizing: border-box;
}

/* =====================
   TWO COLUMN LAYOUT
   Used on homepage, any page with a sidebar
===================== */
#columns {
  display: flex;
  width: 850px;
  margin: 0 auto;
  margin: 0 auto 30px auto;
}

#sidebar {
  width: 200px;
  min-height: 600px;
  border: 3px groove #3f1d16;
  margin: 0 auto 30px auto;
  padding: 10px;
  box-sizing: border-box;
}

/* Sidebar main content — flex version, no fixed width */
#main-content.with-sidebar {
  flex: 1;
  min-height: 600px;
  text-align: center;
  border: 3px groove #3f1d16;
  margin: 0 auto 30px auto;
  padding: 10px;
  box-sizing: border-box;
}

