@import url("https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
a {
  color: inherit;
  text-decoration: none;
}

body {
  color: #f0f0f0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2fr 1.5fr;
  grid-template-areas: "hero" "gallery";
  min-height: 100vh;
}
@media (max-width: 530px) {
  .grid-container {
    grid-template-rows: 1fr 0.5fr;
  }
}

.hero {
  font-family: "Fascinate Inline", system-ui;
  font-weight: 400;
  font-style: normal;
  display: flex;
  text-shadow: -3px 2px 2px #ff1493;
  flex-direction: column;
  justify-content: space-between;
  grid-area: hero;
  background: #f0f0f0 url("images/corazon-3-hero.jpg") center center;
  background-attachment: fixed;
  background-size: cover;
  width: 85%;
  margin: 0 auto;
}

.hero__header {
  text-align: center;
  font-size: 2rem;
}

.hero__div {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 1rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem;
  margin: 0.5rem 0;
}
.hero__cta h2 {
  padding: 0.5rem;
}
@media (max-width: 530px) {
  .hero__cta {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.hero__btn {
  border-style: none;
  background-color: #ffffff;
  border-radius: 2rem;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  color: #00bfff;
  font-size: 1rem;
  font-weight: 800;
  padding: 0 2rem;
}
.hero__btn:hover {
  transform: 10s ease scale(1.1);
  box-shadow: 0 4px 8px #00bfff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 530px) {
  .products-grid {
    display: flex;
    flex-direction: column;
  }
}

.product__article {
  display: flex;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  max-width: 80%;
  min-height: 8rem;
  margin: 1rem 1rem;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 530px) {
  .product__article {
    max-width: none;
    min-width: 55%;
    margin: 1rem auto;
  }
}

.product__overlay {
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 25%;
  background-color: rgba(43, 43, 43, 0.5450980392);
}

.product__overlay a {
  font-size: 2rem;
  text-align: center;
}

.product__article--accessories {
  border-radius: 2rem;
  background: #ff1493 url("images/churse.webp");
  background-size: cover;
}
.product__article--accessories:hover {
  box-shadow: #00bfff -2px 4px 5px 2px;
  transform: scale(0.9);
}

.product__article--shoes {
  border-radius: 2rem;
  background: #ff1493 url("images/air-force.webp");
  background-size: cover;
}
.product__article--shoes:hover {
  transform: scale(0.9);
  box-shadow: #00bfff -2px 4px 5px 2px;
}

.product__article--tops {
  border-radius: 2rem;
  background: #ff1493 url("images/coca-cola-shirt.jpg");
  background-size: cover;
}
.product__article--tops:hover {
  box-shadow: #00bfff -2px 4px 5px 2px;
  transform: scale(0.9);
}

/*# sourceMappingURL=style.css.map */
