body{
    /* background-color: #435C5F; */
    background-color: #3793CB;
    padding: none;
    margin: 0;
}
h1{
    font-family: 'Lalezar', cursive;
    /* flex: 1; */
}
header{
    color: #6db323;
    grid-row: 1/2;
    grid-column: 1/9;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding-left: 8px;
}
nav{
    width: 70%;
} 
li{
    display: block;
    /* width: 100%; */
}
nav a:hover{
    color: #F4FAF8;
}
nav a{
    color: #6db323;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Lalezar', cursive;
    font-size: 1rem;
    /* padding: 1rem 1rem; */
}
nav ul{
    list-style: none;
    display: flex;
    flex-flow: nowrap row;
    justify-content: space-evenly;
}
#wrapper{
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    width: 100%;
}
section{
    color: #435C5F;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
#box1{
    grid-row: 2/3;
    grid-column: 2/8;
}
section div{
    width: 80%;
}
#box2{
    grid-row: 3/4;
    grid-column: 2/8;
}
#box3{
    grid-row: 4/5;
    grid-column: 2/8;
}
#lorum1{
    text-align: left;
}
#lorum2{
    text-align: right;
}
#topbar{
    background-color: #010101;
    grid-row: 1/2;
    grid-column: 1/9;
}
footer{
    font-style: italic;
    text-align: center;
    padding: 1em;
    grid-area: 5/2/6/8;
    /* color: #84a769; */
    color: #010101;
}
@media only screen and (max-width: 1000px){
    #lorum1{
        padding-left: 8px;
    }
    #lorum2{
        padding-right: 8px;
    }
}
@media only screen and (max-width: 500px){
    nav ul{
        list-style: none;
        display: flex;
        flex-flow: nowrap column;
        justify-content: space-evenly;
    }
    section{
        list-style: none;
        display: flex;
        flex-flow: nowrap column;
        justify-content: center;
        width: 100%;
    }
    section p{
        text-align: center;
    }
    #box2{
        flex-direction: column-reverse;
    }
    #lorum1{
        padding-left: 8px;
    }
    #lorum2{
        padding-left: 8px;
        text-align: left;
    }
}