#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;
}
#box {
  background-image: url(images/box.jpg);
  background-size: 50%;
  height: 450px;
  background-position: left top;
  background-repeat:no-repeat;
  background-position: top;
  grid-area: 4 / 4 / 6 / -1;
}
#blackbag {
  background-image: url(images/blackbag.jpg);
  background-size: 30%;
  height: 500px;
  background-position: left top, right top;
  background-repeat:no-repeat;
  background-position: left;
  grid-column: 1/9;
  grid-row: 3/4;
}
#pinkbag {
  background-image: url(images/pinkbag.jpg);
  background-size: 30%;
  height: 500px;
  background-position: left top, right top;
  background-repeat:no-repeat;
  background-position: left;
  grid-column: 1/9;
  grid-row: 4/5;
}
#stars {
  background-image: url(images/stars.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;
}
#red {
  background-image: url(images/red.jpg);
  background-size: 30%;
  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: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
}
h2 {
  text-align: right;
  font-size: 50px;
  color: black;
  background-repeat:no-repeat;
  height: 100px;
  padding-top: 50px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
}
main {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 2em;
  padding-right: 2em;
  display: block;
  grid-area: 3 / 5 / 6 / -1;
}
section {
  float: right;
  width: 55%;
  padding-right: 1rem;
  font-size: 30px;
}
h2 {
  text-align: right;
  padding-right: 10rem;
}
section {
  float: right;
  width: 50%;
  padding-right: 1rem;
  font-size: 30px;
}
h3 {
  text-align: right;
  font-size: 50px;
  padding-right: 10rem;
  color: hotpink;
}
h4 {
  text-align: right;
  font-size: 50px;
  color: hotpink;
  font-weight: bold;
}
h5 {
  text-align: right;
  padding-right: 1rem;
  font-size: 30px;
}
h6 {
  text-align: center;
  font-size: 50px;
  color: hotpink;
  background-position: right;
  background-repeat:no-repeat;
background-color: black;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
}
h7 {
  text-align: right;
  font-size: 50px;
  padding-right: 10rem;
  color: red;
}
h8 {
  text-align: right;
  padding-right: 1rem;
  font-size: 50px;
  color: red;
}
#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;
    }
  }
}
