body {
    background-color:#4A4637;
    color: #FFFFFF;
    font-family: "Avenir Next";
    font-size:
}
.wrapper {
display: grid;
grid-auto-rows: minmax(0px, auto);
grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}
.greenbar {
    background-color: #4A4637;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}
nav {
    font-weight: bold;
    top: 0;
    background-color: #4A4637;
    grid-row: 2 / 3;
    grid-column: 2 / -2;
    color: #ffffff;
    position: fixed;
    width: 100%;
}
.homepic {
    background-image:url(homepic.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3 / 4;
    grid-column: 1 / -1;
}
nav ul {
    list-style-type: none;
    margin: 1;
    padding: 2;
    display:flex;
    flex-flow: row nowrap
}
nav ul li {
    width: 100%
}
nav a {
    text-decoration: none;
    color:#FFFFFF;
    padding: 1rem 0rem; 
    display: block;
    text-align: center;
    transition: .5s;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 75pt;
    font-family: "Avenir Next Condensed";
    -webkit-text-fill-color: white; 
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
}
h2 {
    text-align: center;
    font-family: Avenir Next;
    font-size: 40pt;
    border: 3px solid white;
}
p {
    column-count: 2;
    font-family: "Avenir Next";
}
