body {
    --c:transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.05) 20px,
      rgba(255, 255, 255, 0.05) 40px;
    margin:0 auto;
    border-radius:3px;
    background: 
     repeating-linear-gradient( 15deg,var(--c)) left,
     repeating-linear-gradient(-15deg,var(--c)) right,
     #333333;
   background-size:50.01% 100%; /*a litte bigger than 50% */
   background-repeat:no-repeat;
   font-family: Helvetica, sans-serif;
}
#wrapper {
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}
* {
    box-sizing: border-box;
}
#headerbar {
    background-color: #531414;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}
header {
    font-family: Georgia, serif;
    grid-column: 2 / 8;
    grid-row: 1 / 2;       
    margin: 0;
    color: #E5E5E5;
}
header h1 { 
    padding-left: 1em;
}
header h1 p {
    display: inline;
    font-size: .5em;
    color: #c4c4c4;
}
header a {
    text-decoration: none;
    color: #E5E5E5;
    padding: .2em;
}
nav {
    font-weight: bold;
    position: sticky;
    top: 0;
    background: rgba(83, 20, 20, 0.6);
    grid-row: 2/ 3;
    grid-column: 2 / 8;
    z-index: 3;
}
nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
}
nav ul li {
    width: 100%;
}
nav a {
    text-decoration: none;
    color: rgba(229, 229, 229, 0.6);
    padding: 1rem 0rem;
    display: block;
    text-align: center;
    transition: all 0.15s ease;
}
nav a:hover {
    background-color: #E5E5E5;
    color: #531414;
    font-size: 1.1em;
}
#forestcat {
    height: 500px;
    background-image: url("forestcat.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 2 / 4;
    grid-column: 1 / 9;
    z-index: 1;
    background-color: #E5E5E5;
    margin: 0;
    margin-bottom: 5px;
    max-width: 100%;
}
#hook {
    font-size: 1em;
    align-self: center;
    background: rgba(83, 20, 20, 0.6);
    color: #E5E5E5;
    text-align: center;
    grid-row: 2 / 4;
    grid-column: 6 / 8;
    z-index: 2;
    margin: clamp(15px, 5%, 50px);
}
#hook h4 {
    margin-block-start: .4em;
    margin-block-end: 0em;
}
#hook p {
    margin-block-start: .8em;
    margin-block-end: .4em;
}
#hook a {
    text-decoration: none;
    color: rgba(229, 229, 229, 1);
    padding: 1rem 2rem;
}
#hook h3 a:hover {
    background-color: #E5E5E5;
    color: #531414;
}
h1 {
    text-align: center;
    color: #531414;
    font-family: Georgia, serif;
    border-bottom: .3em solid #333333;
}
main {
    padding-left: 1.25em;
    padding-right: 1.25em;
    display: block;
    background-color: #E5E5E5;
    padding-top: 1px;
    padding-bottom: 1px;
    grid-row: 4 / 5;
    grid-column: 2 / 8;
    min-height: 500px;
}
main section {
    float:  left;
    width: 50%;
    padding-right: 1rem;
}
.clear {
    clear: both;
}
footer {
    font-size: 1em;
    font-style: italic;
    text-align: center;
    padding: 1.5em;
    background-color: #C4C4C4;
    grid-row: 5 / 6;
    grid-column: 2/ 8;
    margin-top: 5px;
}
#footerbar {
    background-color: #c4c4c4;
    grid-row: 5 / 6;
    grid-column: 1 / -1;
    margin-top: 5px;
}
@media only screen and (max-width: 992px) {
    #wrapper {
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);
    }
    main section {
        width: auto;
    }
    header h1 {
        grid-column: 1 / 2;
        position: sticky; 
        padding-left: 0;
    }
    nav {
        grid-row: 2 / 3;
        grid-column: 2 / 8;
    }
}
@media only screen and (max-width: 768px) {
    header h1 {
        background-image: none;
        text-align: center;
        height: auto;
    }
    nav { 
        grid-row: 2 / 3;
        grid-column: 1 / 3;
    }
    #forestcat {
        height: auto;
    }
    nav ul {
        flex-flow: column nowrap;      
    }
    nav a {
        font-size: 10px;
        padding: 1vh;
        overflow: hidden;
    }
    #hook {
        font-size: 10px;
    }
    #hook a {
        padding: 1vw;
    }
}
button {
    align-self: center;
}
h2 {
    text-align: center;
    color: #531414;
    font-family: Georgia, serif;
    border-bottom: .1em solid #333333;
    grid-column: 4 / 6;
}
.slides {
    display:none;
    background-size: cover;
    object-fit: cover;
    max-height:30em;
}
#center {
    align-items: center;
}
main li {
    margin-top: 10px;
}
main li a {
    color: #333333;
}