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

/* ==========  header css ======= */
.navLogo img {
  height: 60px;
}

/* ========== content section ======== */
.mainContent {
  margin: 0 auto;
}

#contentContainer {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 30px;
  place-items: center;
}

.singleItem {
  color: black;
  max-width: 280px;
  border-radius: 10px;
  background-color: rgb(238, 238, 238);
  box-shadow: 2px 2px 10px #868585;
  transition: all linear 0.3s;
}

.singleItem:hover {
  box-shadow: -2px -2px 10px #868585;
}

.singleItem img {
  height: 280px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.singleItem button {
  margin-bottom: 15px;
  margin-right: 10px;
}

.errorText {
  color: olive;
  font-size: 35px;
  margin: 50px auto;
  font-weight: bold;
  text-transform: uppercase;
}
.opps {
  font-size: 150px;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 10px 10px 25px black;
  background-image: url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExcGpubmdwNXBzbXFweXA1cnBzbnFmMm9lcjFxOGZmc3c4cm9hdHN2MSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/cOZtZNZt2yg2k/giphy.gif);
  background-position: center;
}

.modalContainer {
  background-color: orange;
}

.modalHead,
.modalFooter {
  background-color: #c4d065;
}

.modalBody img {
  height: 230px;
  width: 100%;
  margin-bottom: 10px;
}

.modalFooter .closeBtn {
  width: 95%;
  padding: 5px;
  margin: 0 auto;
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* ------- cart css ------ */
.cartContainer {
  color: black;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #868585;
  background-color: rgb(238, 238, 238);
  transition: all linear 0.3s;
}

.cartContainer:hover {
  box-shadow: -2px -2px 10px #868585;
}

#count {
  color: tomato;
  padding: 5px 10px;
  margin-left: 10px;
  background-color: white;
  border-radius: 10px;
}

#cartTitle {
  display: flex;
  gap: 80px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #a5a5a5;
}

.cartItem {
  display: flex;
  gap: 30px;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0px;
  align-items: center;
  border-bottom: 1px solid #a5a5a5;
}

.cartItem .cartImg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* ---------- Responsive ---------- */
@media only screen and (min-width: 320px) and (max-width: 991px) {
  .opps {
    font-size: 100px;
  }
  .mainContent {
    margin-top: 50px;
  }
  .cartContainer {
    margin-top: 50px;
  }
}
