#wrapper {
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

nav {
    font-weight: bold;
    font-size: larger;
    text-decoration: none;
    position: sticky;
    top: 0;
    grid-area: 3 / 1 / 4 / -1;
}

nav a {
    padding: 1rem 0rem;
    display: block;
    height: 50px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #000000;
}

nav a:hover {
    background-color: #e66c08;
}

nav ul {
    list-style: none;
    margin: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-flow: row nowrap;
}
.container {
    position: relative;
    text-align: center;
    color: white;
}


.centered {
    position: absolute;
    bottom: 8px;
    right: 16px;
}
nav ul li {
    width: 100%;
}

form {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
}

main {
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 1px;
    padding-bottom: 1px;
    display: block;
    background-color: #ffffff;
    grid-area: 4 / 2 / 5 / -2;
}

body {
    background-color: #FFFFFF;
    color: #666666;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: linear-gradient(#eeeeee, #ffffff);
    background-attachment: fixed;
    margin: 0px;
}

header {
    text-align: center;
    text-decoration: none;
}

header a {
    text-decoration: none;
    color: #e66c08;
}

h2 {
    color: #e66c08;
}

#homehero {
    height: 300px;
    background-image: url("dumbells.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 4 / -1;
}

#logohero {
    height: 50px;
    background-image: url("logo.png");
}

#musclehero {
    height: 200px;
    background-image: url("muscle.png");
    background-repeat: no-repeat;
}

#weightlosshero {
    height: 200px;
    background-image: url("weightloss.png");
    background-repeat: no-repeat;
}

#healthyhero {
    height: 200px;
    background-image: url("peppers.png");
    background-repeat: no-repeat;
}