:root {
  --headerimage: url('../images/header.png');
  --backgroundimage: url('../images/background.png');
  --highlight: url('../images/highlight.png');
  --navbar: #7aa171;
  --navtext: #FFFFFF;
  --navtextshadow: #5f8357;
  --navhover: #99cc8d;
  --border: #aca5a5;
  --divider: #aca5a5;
  --boxbg: #e0e1e0;
  --boxtext: 000000;
  --header: #323232;
  --subheader: #323232;
  --bodytext: #323232;
  --bold: #323232;
  --link: #32a852;
  --linkhover: #99cc8d;
}

@font-face {
  font-family: Arial;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Arial.ttf');
}

@font-face {
  font-family: Arial;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Arial-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Arial;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Arial-Italic.ttf');
  font-style: italic;
}

@font-face {
  font-family: Arial;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Arial-Bold-Italic.ttf');
  font-style: italic;
  font-weight: bold;
}

@font-face {
  font-family: Open Sans;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Open-Sans-Regular.ttf');
}

@font-face {
  font-family: Open Sans;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Open-Sans-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Open Sans;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Open-Sans-Italic.ttf');
  font-style: italic;
}

@font-face {
  font-family: Open Sans;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Open-Sans-Bold-Italic.ttf');
  font-style: italic;
  font-weight: bold;
}

@font-face {
  font-family: Titillium Web;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Titillium-Web-Regular.ttf');
}

@font-face {
  font-family: Titillium Web;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Titillium-Web-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Titillium Web;
  src: url('https://alltheprettydigitalhorses.neocities.org/fonts/Titillium-Web-SemiBold.ttf');
  font-weight: 600;
}

body {
  font-family: 'Open Sans';
  font-size: 13px;
  color: var(--bodytext);
  margin: 0;

  background-size: 65px;
  background-image: var(--backgroundimage);
  background-size: cover;
  background-attachment: fixed;
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
}

#container {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
  /* this centers the entire page */
}

#container a {
  color: var(--link);
  font-weight: bold;
  }

#container a:hover {
  color: var(--linkhover);
  font-weight: bold;
  }

#header {
  width: 900px;
  height: 150px;
  background-image: var(--headerimage);
  background-size: 100%;
}

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

#navbar li a:hover {
  color: var(--navhover);
  text-decoration: underline;
  text-decoration: none;
}

#flex {
  display: flex;
}

main {
  background-color: #FFFFFF;
  flex: 1;
  height: auto;
  padding: 20px;
}

* {
  scrollbar-color: #7aa171 #e4e5e4;
}


/* header */
h1 {
  font-family: 'Titillium Web';
  font-size: 25px;
  font-weight: bold;
  line-height: 0;
  color: var(--header);
  margin-top: 30px;
  margin-bottom: 30px;
}

/* subheader */
h2 {
  font-family: 'Titillium Web';
  font-size: 16px;
  font-weight: bold;
  color: var(--subheader);
}

/* navigation text */
h3 {
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: bold;
  color: var(--navtext);
  margin-top: 0px;
}

strong {
  color: var(--bold);
}

hr.solid {
  background: var(--divider);
  height: 1px;
  border: 0px;
}

.box {
  background-color: var(--boxbg);
  border: 1px solid var(--border);
  padding: 10px;
  color: var(--boxtext);
}

.caption {
  font-family: 'Open Sans';
  font-size: 11px;
}

.table {
  border:solid 0px #000; border-collapse:none;}
  table td {border:1px solid var(--border);}
  table #HEADER {color:#313131;}
  table #ROW {color:#313131;}

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

            /* 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
    */