#wrapper {
  display:grid;
  grid-template-columns: minmax(0px,1fr)
    repeat(6,minmax(0,175px)minmax 0px,1fr);
  grid-auto-rows: minmax(0px,auto);
  background-color: white;
}
* {
  box-sizing: border-box;
}
#all3 {
  background-image: url(images/all3.jpg);
  background-size: 50% 100%;
  height: 300px;
  background-position: left top, right top;
  background-repeat:no-repeat;
  background-position: left;
  grid-column: 1/9;
  grid-row: 4/5;
}
#bottom {
  background-image: url(images/bottom.jpg);
  background-size:100%;
  height: 200px;
  background-position: left top, right top;
  background-repeat:no-repeat;
  background-position: left;
  grid-column: 1/9;
  grid-row: 5/6;
}
#dress {
  background-image: url(images/dress.jpg);
  background-size: 50% 100%;
  height: 500px;
  background-position: left top, right top;
  background-repeat:no-repeat;
  background-position: left;
  grid-column: 1/9;
  grid-row: 3/4;
}

nav {
  position: sticky;
  top: 0px;
  font-weight: 700;
  background-color: white;
  grid-column: 1/9;
  grid-row: 2/3;
}

nav ul {
  list-style-type: none;
  margin-bottom:10px;
  display:flex;
  flex-flow: row nowrap;
  text-decoration: underline;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  padding-bottom:0px;
  padding-top:0px;
  padding-right: 0px;
  padding-left: 0px;
}

nav ul li {
  width: 100%;
  text-align: center;
  color: black;
  font-size: 25px;
}

nav a {
  text-decoration: none;
  background-color: black;
  color: beige;
  text-align: center;
  display: block;
  padding: 1rem 0rem;
}
h1 {
  text-align: center;
  font-size: 100px;
  color: black;
  background-position: right;
  background-repeat:no-repeat;
  height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
}
h2 {
  text-align: right;
  font-size: 50px;
  color: black;
  background-repeat:no-repeat;
  height: 100px;
  padding-top: 50px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
}
#EnterZipCode{
  text-align: center;
}
#clear {
  background-color: transparent;
  width: 50%;
  height: 100%;
  float: right;
  text-align: right;
}
#imageGrid {
  display: grid;
  grid-template-columns: repeat(2, 50%)
}
#imageGrid div {
  width: 100%;
}
.right {
  text-align: right;
}
@media only screen and (max-width 992px) {
    #wrapper {
      grid-template-columns:  minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);}
}
@media only screen and (max-width 768px) {
  nav {
    grid-row: 2 / 3;
    grid-column: 1/ 5;}
    nav ul {
      flex-flow: column nowrap;
    }
  }
}
