html {
    background-color: grey;
}

body {
    margin: 0 auto;
}

header h1 {
    color: white;
    font-family: puffin-arcade-chrome, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1000%;
    text-align: center;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
}

nav {
    background-color: black;
    font-weight: bold;
    position: sticky;
    top: 0;
    grid-row: 2 / 3;
    grid-column: 1 / -1;
}
nav ul{
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(3, minmax(0px, 1fr)) minmax(0px, 1fr);
    list-style-type: none;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}
nav ul li{
    width: 100%;
}
nav a {
    color: white;
    font-family: puffin-arcade-chrome,sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 350%;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 1rem;
}
nav a:hover {
    background-color: grey;
}
#home {
    grid-column: 2 / -4;
}

main {
    grid-row: 3 / 4;
    grid-column: 2 / -2;
}

main h2 {
    text-align: center;
    font-family: puffin-arcade-nerf,sans-serif;
    font-weight: 800;
    font-style: normal;
    font-weight: 900;
    font-size: 500%
}

main div img {
    grid-column: 1 / -2;
    width: 90%;
    height: auto;
    padding: 5%;
}

main p {
    grid-column: 2 / -1;
    font-family: puffin-arcade-liquid,sans-serif;
    font-weight: 800;
    font-size: 200%;
    font-style: normal;
    text-align: left;
}

footer {
    grid-column: 2 / -2;
}
footer ul{
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    list-style-type: none;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}
footer ul li{
    width: 100%;
}
footer a {
    color: black;
    font-family: puffin-arcade-yoko, sans-serif;
    font-weight: 800;
    font-size: 100%;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 1rem;
}

#shipping {
    color: white;
    background-color: black;
    text-align: center;
    padding: 1%;
    margin: 0%;
    border: 0in;
}

#banner {
    background-image: url(banner.jpg);
    grid-area: 1 / 1 / 2 / -1;
    background-size: cover;
    height: 400px;

}

#wrap {
    display: grid;
    background-color: grey;
    grid-template-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0px, 175px)) minmax(0px, 1fr);
}

#main {
    display: grid;
    grid-template-rows: minmax(0px, auto);
    grid-template-columns: 33% 33% 33%;
}
