html,
body {
  height: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  background-color: rgb(12, 168, 158);
}

.bannerImg {
  background-image: url("../assets/storeBanner.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border: 73.6px solid rgb(12, 168, 158);
  border-width: 73.6px 0px;
}

/* Product Container Size */
#bootstrap-overrides {
  max-width: 1000px;
}

/* ALL IMAGES */
img {
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Character Title */
.title {
  text-align: center;
  margin: 0px 0px 20px 0px;
}

/* Icon Images */
.icons {
  margin: 0px 0px 15px 0px;
}

.icons h3 {
  text-align: center;
  margin: 10px 0px 20px 0px;
}

.icons img {
  border-radius: 50%;
  max-width: 80%;
  max-height: 80%;
}

.icons img:hover {
  opacity: 0.75;
}

#pikachuIcon img {
  background-color: #fff7b6;
}

#charizardIcon img {
  background-color: #ffcf79;
}

#squirtleIcon img {
  background-color: #9fe7ff;
}

#eeveeIcon img {
  background-color: #ddb697;
}

/* Product Border */
.product {
  margin: 10px 5px 10px 5px;
}

.product:hover {
  background-color: #f4f4f4;
}

/* Image Box */

.box {
  width: 150px;
  /* border: 2px solid black; */
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.box.small {
  height: 100px;
}

@media only screen and (max-width: 1200px) {
  .box {
    width: 100px;
  }
}

@media only screen and (max-width: 988px) {
  .box.small {
    width: 250px;
  }
}

@media only screen and (max-width: 988px) {
  .box.small {
    height: 250px;
  }
}

/* Text Box */
.titleBox {
  /* border: 1px solid black; */
  margin: 22px 0px 0px 0px;
}

/* Description Box */
.desBox {
  /* border: 1px solid black; */
  margin: 0px 0px 0px 0px;
}

.desBox p {
  margin: 0;
  padding: 0;
}

/* Flip card */
.flip-card {
  background-color: transparent;
  border: 1px solid transparent;
  height: 50px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: transparent;
  color: black;
}

.flip-card-back {
  background-color: transparent;
  transform: rotateY(180deg);
  color: black;
}

/* Description Text */

@media screen and (min-width: 700px) {
  div.backDesBox p {
    font-size: 17px;
  }
}

@media screen and (min-width: 991px) {
  div.backDesBox p {
    font-size: 10px;
  }
}

/* Buy Button */

.buyBox {
  margin: 10px 0px 10px 0px;
}

.buyBox button:hover {
  transition: transform 0.2s;
  transform: scale(1.1);
}

/* Footer */
footer {
  margin-top: 20px;
}
