/* 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: Fairfax HD;
        src: url(/FairfaxHD.ttf);
  }
  body {
    background-image: url(/acorn.png);
    background-position: 50% 0%;
    background-repeat: repeat;
    background-color: #005000;
    font-family: Fairfax HD;
    color: white;
    margin: 0px;
  }
  a {
    color: white;
    text-decoration: none;
  }
  .body {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  button {
    font-size: 20px;
    font-family: Fairfax HD;
    color: white;
    background-image: linear-gradient(#d51c3a, #841526);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    margin: 5px 5px 0px 0px;
    transition: 0.25s;
    border-radius: 3px;
    padding: 10px;
    border: 0px;
    cursor: pointer;
  }
  button:hover {
    background-image: linear-gradient(#d51c3a, #d51c3a);
    box-sizing: border-box;
  }
  button:active {
    box-shadow: inset 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(#841526, #d51c3a);
  }
  h1 {
    text-align: center;
  }
  h2 {
    font-size: 24px;
  }
  h, h3 {
    font-size: 20px;
    font-weight: normal;
    margin: 10px 0px;
  }
  p {
    text-align: center;
  }
  .header {
    height: 240px;
  }
  .header img {
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
  }
  .guide {
    display: flex;
    background-image: linear-gradient(#4e4e4e, #373737);
  }
  .guide a {
    margin: auto;
    margin-top: 0px;
    width: 100%;
  }
  .guidebtn {
    margin: 0px;
    padding: 10px 5px;
    text-align: center;
  }
  .guidebtn:hover {
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(120, 120, 120, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
  }
  .guidebtn:active {
    background-image: linear-gradient(#333, #222);1
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(120, 120, 120, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
  }
  .selected, .selected:hover, .selected:active {
    background-image: linear-gradient(#333, #222);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(120, 120, 120, 0.3), inset 0px 0px 0px rgba(0, 0, 0, 0.0);
  }
  .content {
    padding: 20px;
    color: #808080;
    background-color: #222;
    display: block;
    position: relative;
    z-index: 5;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
  }
  .content a {
    color: #808080;
  }
  .footer {
    padding: 10px 20px;
  }
  .dual {
    display: flex;
  }
  .dual div:first-child {
    padding-left: 0px;
    padding-right: 5px; 
    margin-left: 0px;
    margin-right: auto;
  }
  .dual div {
    padding-left: 5px; 
    padding-right: 5px;
    margin-left: auto;
    margin-right: auto;
  }
  .dual div:last-child {
    padding-left: 5px; 
    padding-right: 0px;
    margin-left: auto;
    margin-right: 0px;
  }