@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Pinyon+Script&display=swap');

:root {
  --header-image: url('/BCNL/img/Banner_Main_MD.png');
  --cream: #f1eed4;
  --gold: #f8fa6f;
  --dkgold: #9b4501;
  --content: #43256E;
}

body {
  font-family: 'EB Garamond', serif;
  font-size: 1.2em;
  font-weight: 400;
  margin: 0;
  background-color: #000;
  background-size: 65px;
  color: var(--cream);
}

a {
  color: var(--dkgold);
}

a:hover {
  opacity: 50%;
}

* {
  box-sizing: border-box;
}

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

#header {
  width: 100%;
  background-color: #000;
  max-height: 490px;
  background-image: var(--header-image);
  background-repeat: no-repeat;
  background-size: 100%;
}

#navbar {
  height: 40px;
  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: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
    color: #000000;
    text-shadow: 0 0 5px var(--gold), 0 0 5px var(--gold), 0 0 10px var(--gold), 0 0 20px var(--gold);
    text-decoration: none;
}

#navbar img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(66%) saturate(723%) hue-rotate(10deg) brightness(127%) contrast(96%);
}

#flex {
  display: flex;
}

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

main {
  flex: 1;
  padding: 20px;
  order: 2;
}

#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
}

#leftSidebar ul, #rightSidebar ul {
  padding: 5px;
  margin: 0;
}

#leftSidebar li, #rightSidebar li {
  margin-bottom: 14px;
}

footer {
  width: 100%;
  padding: 10px;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--dkgold);
}

h2,
h3 {
  font-style: italic;
}

h1 {
  font-family: 'Pinyon Script', cursive;
  font-size: 2em;
}

h2 {
    font-size: 1.2em;
}

strong {
  color: #d1be9d;
}

.box {
  background-color: #13092D;
  border: 1px solid #ED64F5;
  padding: 10px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #13092D;
}


/* 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%;
  }

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