@font-face {
    font-family: 'Syne-Regular';
    src: url('../fonts/Syne-Regular.woff2') format('woff2'),
        url('../fonts/Syne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FunnelSans-Light';
    src: url('../fonts/FunnelSans-Light.woff2') format('woff2'),
        url('../fonts/FunnelSans-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpecialGothicExpandedOne-Regular';
    src: url('../fonts/SpecialGothicExpandedOne-Regular.woff2') format('woff2'),
        url('../fonts/SpecialGothicExpandedOne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
  box-sizing: border-box;
}
body {
  background-color: rgba(224, 224, 224, 0.4);
  font-family: FunnelSans-Light, geneva, sans-serif;
  display: flex;
  flex-direction: column;

}
article, aside, footer, header {
  padding:10px;
}
main{
  border-left: solid black 1px;
  border-right: solid black 1px;
  max-width: 1400px;
  margin-left:auto;
  margin-right:auto;
}
header, footer {
  background-color: #0e3b04;
  color: rgb(255, 255, 255);
  text-align: center;
  border-bottom: 1px solid #fff;
}
h1, h2 {
  text-align: center;
  font-family: 'Syne-Regular', geneva, sans-serif;
}

h3, h4 {
  text-align: center;
  font-family: 'Syne-Regular', geneva, sans-serif;
}
#columns{
    display:flex;
    flex-direction:row;
}
#sectionContent{
    border-top: solid black 1px;
    padding:10px;
}
#invis{
  display:none;
}
article {
    flex-basis:100%;
    border-right: solid black 1px;
  }

article:nth-child(4){
  border-right:none;
}
nav {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
nav a:hover{
  background: rgba(54, 45, 31, 0.92);
  color: white;
}
ul{
  display: flex;
  flex-direction:row;
  margin:0;
  padding:0;
}
ul li{
  flex: auto;
  list-style-type:none;
  border-right:solid black 1px;
  border-bottom:solid black 1px;
}
ul li:nth-child(1){
  border-left:solid black 1px;
}
ul li a {
  display: flex;
  flex: auto;
  text-align:center;
  text-decoration: none;
  justify-content: center;
  font-size: 1.2rem;
  color: black; 
  padding:10px;
}


* {
    box-sizing: border-box;
    border: 1px solid rgba(67, 67, 67, 0);
}
body {
    width: 98%;
    margin: auto;
}
section, article, aside, footer, header {
    padding: 0.5rem;
}
img, video, embed {
    max-width: 98%;
}

/* default navigation values */
nav {
    display: flex;
    flex-direction: column;
}
nav a {
    flex: 100%;
    margin: 0 5px;
    padding: .5rem;
}

/* medium screen */
@media screen and (min-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        max-width: 75rem;
    }
    main {
        display: flex;
        flex-wrap: wrap;
    }
    nav, header {
        order: -1;
    }
    nav {
        flex-direction: row;
    }
    nav a {
        flex: auto;
    }
    article {
        flex: 50%;
    }
    aside, section {
        flex: 100%;
    }
    section p {
        column-count: 2;
        column-gap: 20px;
        column-rule: 1px solid rgb(255, 105, 0);
    }
}

/* large screen */
@media screen and (min-width: 1200px) {
    article {
        flex: 35%;
    }
    aside {
        flex: 30%;
    }
}