@import url("https://fonts.googleapis.com/css2?family=Anton&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lobster&display=swap");
body {
  background-color: #eee5e4;
  width: 70%;
  margin: auto;
}

.header {
  display: flex;
  align-items: center;
  margin: auto;
  width: 80%;
  border-bottom: 1px solid gray;
}
.header h1 {
  font-family: "Lobster", sans-serif;
  color: #6d6a62;
  font-size: 50px;
}
.header a {
  display: flex;
  height: 40px;
  align-items: center;
  color: #6d6a62;
  font-family: "Kanit@wght100", sans-serif;
  text-decoration: none;
  font-size: 25px;
  margin-left: 10%;
  font-weight: normal;
}
.header a:hover {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}
.header .ShopIcon {
  margin-left: auto;
}

h4 {
  color: #6d6a62;
  font-family: "Kanit@wght100", sans-serif;
  margin-left: 10%;
  margin-top: 5%;
  margin-bottom: 5%;
  font-weight: normal;
}

.FunkyPops {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 5%;
       column-gap: 5%;
  margin: auto;
  width: 70%;
  margin-top: 50px;
}
.FunkyPops .FunkyPop {
  display: block;
  width: 250px;
  height: 300px;
  border: 2px solid darkgray;
  background-color: lightgray;
  padding: 10px;
  box-shadow: 3px 3px 3px #6d6a62;
  text-align: center;
  color: #393834;
  transition: transform 0.5s, box-shadow 0.2s, background-color 0.2s;
}
.FunkyPops .FunkyPop:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 5px #6d6a62;
  background-color: rgb(236.5, 236.5, 236.5);
  cursor: pointer;
}
.FunkyPops .FunkyPop--OnSale {
  background-color: #f0e080;
  color: red;
}
.FunkyPops .FunkyPop--OnSale:hover {
  background-color: rgb(245.3873239437, 235.1338028169, 173.6126760563);
}
.FunkyPops .FunkyPop img {
  display: block;
  height: 80%;
  margin: auto;
}
.FunkyPops .FunkyPop h2 {
  font-family: "Anton", sans-serif;
}

hr {
  height: 1px;
  width: 80%;
  margin: auto;
  background-color: #6d6a62;
  margin-top: 50px;
}

footer {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 80%;
  font-family: "Kanit@wght100", sans-serif;
  color: #6d6a62;
}/*# sourceMappingURL=style.css.map */