body{
margin:0;
font-family:'Franklin Gothic Medium','Arial Narrow',Arial,sans-serif;
background:#eef7f0;
color:#1f1f1f;

display:grid;

grid-template-areas:
"banner"
"nav"
"intro"
"main"
"footer";
}


.banner{
grid-area:banner;
height:150px;
width:100%;
background-repeat:no-repeat;
background-image:url("../Imgs/Ultimate-B.jpg");
background-position:center;
background-color:#10653D;
}

.nav{
grid-area:nav;
text-align:center;
padding-top:15px;
background:#10653D;
height:42px;
}

.nav a{
color:#ffffff;
text-decoration:none;
margin:0 14px;
font-weight:bold;
font-size:25px;
padding:8px 14px;
border-radius:6px;
}

.nav a:hover{
background:#1d3f2c;
}


.intro{
grid-area:intro;
text-align:center;
padding:50px 20px;
max-width:900px;
margin:auto;
}

.intro h1{
font-size:45px;
margin-bottom:15px;
color:#2f7a4f;
}

.intro p{
font-size:23px;
line-height:1.6;
}


.footer{
grid-area:footer;
text-align:center;
padding:20px;
background:#2f7a4f;
color:#ffffff;
font-size:23px;
}