body {
  width: 80%;
  margin: auto auto;
  background-color: #eee5e4;
  font-family: Kanit;
}

.header {
  display: grid;
  grid-template-columns: 20% 60% 20%;
}
.header__h1 {
  font-size: 60px;
  font-family: Lobster;
}
.header__i {
  margin: auto;
  font-size: larger;
}
.header__hr {
  margin-top: -15px;
  margin-bottom: 60px;
}
.header__links {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  margin: auto 0;
}
.header__links__a {
  text-decoration: none;
  color: black;
  font-size: x-large;
}
.header__links__a:hover {
  text-decoration: overline underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.funko {
  display: grid;
  grid-template-columns: 10% repeat(3, 1fr) 10%;
}
.funko__item {
  width: 250px;
  height: 300px;
  background-color: #c9c9c9;
  border: 1px #6d6a62 solid;
  box-shadow: #6d6a62 3px 3px 5px;
}
.funko__item:hover {
  background-color: rgb(213.75, 213.75, 213.75);
  box-shadow: #6d6a62 5px 5px 10px;
}
.funko__item__price {
  color: #393939;
  text-align: center;
  font-size: larger;
  font-family: Anton;
}
.funko__item__price--sale {
  color: red;
  text-align: center;
  font-size: larger;
  font-family: Anton;
}
.funko__item__img {
  width: 70%;
  margin: auto;
  display: flex;
}
.funko__item__img--sale {
  width: 70%;
  margin: auto;
  display: flex;
}
.funko__item--sale {
  width: 250px;
  height: 300px;
  background-color: #f0e080;
  border: 1px #6d6a62 solid;
  box-shadow: #6d6a62 3px 3px 5px;
}
.funko__item--sale:hover {
  background-color: rgb(242.6936619718, 229.5669014085, 150.8063380282);
  box-shadow: #6d6a62 5px 5px 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
}
.footer li::marker {
  font-size: 0.6em;
}
.footer__hr {
  margin-top: 30px;
}/*# sourceMappingURL=funkopop.css.map */