
#shop-title {
  text-align: center;
}

#shop-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#shop-page-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#choose-occasion {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#items {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5em;
}

.item {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 0.5em 0.5em 0 0;
  border: 1px solid var(--background);
  transition: 0.5s;
  margin: 2em 0;
  width: 16em;
}

.item:hover {
  background-color: var(--white);
  border: 1px solid rgb(151, 151, 151);
}

.item:hover img {
  opacity: 0.3;
}

.item:hover .view-item {
  opacity: 1;
}

.item h2, .item h3, .item h1 {
  margin: 0;
  padding: 0.1em;
}

.item h2 {
  margin-top: 0.5em;
  color: var(--main);
  font-style: italic;
  font-size: 1.2rem;
}

.itemTitle {
  font-size: 1.2rem;
}

.item h3 {
  font-style: italic;
  margin-bottom: -2em;
  font-weight: 400;
}

.image-holder {
  width: 16em;
  height: 16em;
  background-color: var(--black);
  border-radius: 0.5em;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5em;
  transition: 0.5s;
}

.view-item {
  position: relative;
  top: -7em;
  opacity: 0;
  transition: 0.5s;
  color: var(--white);
}

#occasions {
  width: 10em;
  padding: 0.5em;
  font-size: 1.2rem;
  margin-left: 1em;
}


@media only screen and (max-width: 750px) {

  #items {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  #shop-page-title {
    flex-direction: column;
  }

}



@media only screen and (max-width: 700px) {
  
  #choose-occasion {
    margin-top: 0;
  }

}
