* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

/* Nav */

nav {
  height: 75px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  background-color: rgb(224, 200, 171);
  border-bottom: 4px solid rgb(132, 118, 101);
}

.logo {
  position: relative;
}

.three8 {
  font-size: 4rem;
  color: rgb(255, 224, 50);
}

.abap {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  font-family: 'La Belle Aurore', cursive;
  line-height: 90%;
}

nav ul {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  justify-items: center;
  align-items: center;
}

nav ul li:not(.logo) {
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

/* Home Header */

.homeHeader {
  height: 500px;
  width: 100%;
  padding: 0 15%;
  background: linear-gradient(95deg, rgb(247, 235, 220) 50%, rgb(97, 123, 97));
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.homeHeader section {
  max-width: 180px;
}

.homeHeader h2 {
  font-size: 4.5rem;
  font-family: 'Kaushan Script', cursive;
}

.homeHeader p {
  font-size: 1.15rem;
}

.shopDress {
  height: 30px;
  margin-top: 15px;
  padding: 0 1rem;
  font-size: .9rem;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: .25s ease;
}

.shopDress:hover {
  transition: .25s ease;
  color: black;
  background-color: white;
}

.homeHeader img {
  height: 170%;
  position: relative;
  top: -70px;
}

/* Sale Info */

.saleInfo {
  min-height: 100px;
  width: 100%;
  padding: 0 15%;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.infoDiv {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.infoDiv:not(:last-child) {
  border-right: 3px solid rgb(224, 200, 171);
}

.infoDiv p {
  max-width: 60%;
  font-size: .8rem;
}

/* Home Main */

#homeMain {
  padding: 60px 15%;
}

.sellSection {
  min-width: 400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.sellSmall {
  width: 100%;
  aspect-ratio: 7 / 5;
  background-color: whitesmoke;
}

.sellTall {
  height: 100%;
  width: 100%;
  background-color: whitesmoke;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.sellWide {
  min-width: 420px;
  width: 100%;
  aspect-ratio: 14 / 5;
  background-color: whitesmoke;
  grid-column: 1 / 3;
}

.sell1 {
  padding: 15px;
  background-image: url(images/blackHeel.png);
  background-repeat: no-repeat;
  background-size: auto 120%;
  background-position: 150% 50%;
}

.sell2 {
  padding: 15px;
  background-color: rgba(238, 217, 97, 0.71);
  background-image: url(images/brownShoes.png);
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-position: 0 100%;
}

.sell3 {
  padding: 15px;
  background-image: url(images/greenDress.png);
  background-size: auto 170%;
  background-position: 25% 60%;
}

.sell4 {
  padding: 15px;
  background-image: url(images/daisyRing.webp);
  background-size: cover;
  background-position: 100% 0;
}

.buyThis {
  height: 100%;
  width: 100%;
  padding: 16px;
  border: 2px solid white;
  border-radius: 2px;
  overflow: hidden;
}

.heelBox h3, .shoeBox h3, .dressBox h3, .ringBox h3 {
  color: white;
  mix-blend-mode: difference;
  font-size: 2rem;
}

.ringBox p {
  max-width: 50%;
}

.ringBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.shopThis {
  height: 30px;
  margin-top: 15px;
  padding: 0 1rem;
  font-size: .9rem;
  background-color: transparent;
  color: black;
  border: 2px solid black;
  border-radius: 2px;
  transition: .3s ease;
  cursor: pointer;
}

.shopThis:hover {
  background-color: black;
  color: white;
  text-shadow: none;
  transition: .3s ease;
}

/* Shopping Main */

#shoppingMain {
  min-height: calc(100vh - 75px);
  padding: 10%;
  display: none;
  background-color: whitesmoke;
}

#shoppingMain h2 {
  font-size: 3rem;
}

.shopItem {
  min-height: 120px;
  width: 100%;
  margin: 5px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.shopItem img {
  width: 20rem;
  margin-right: 10%;
}

.shopItem > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shopItem h3 {
  font-size: 4rem;
}

.shopItem > div > div {
  font-size: 2rem;
}

/* Cart Aside */

#cartAside {
  height: calc(100% - 75px);
  width: 200px;
  padding: 10px;
  background-color: whitesmoke;
  position: absolute;
  top: 75px;
  right: -200px;
  transition: .5s ease;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5);
}

.cartItem {
  margin: 4px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Media Queries */

@media only screen
  and (max-width: 900px) {
    .sellSection {
      grid-template-columns: repeat(2, 1fr);
    }

    .sellTall {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
    }
  }