@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins:wght@300;500&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Kaushan Script", cursive;
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
}

:root {
  --background-color: #ffffff;
  --Text-color: ;
  --Logo-Text: "Kaushan Script", cursive;
  --Underline-color: #e287db;
  --Title-color: #e287db;
  --Footer-background: rgb(107, 68, 102);
  --Footer-text-color: rgba(197, 181, 195, 0.5);
  --Footer-text-color-hover: rgba(197, 181, 195, 1);
}

.disclamer {
  text-align: center;
  font-size: 1.2rem;
}

.title-gal {
  text-align: center;
  color: var(--Title-color);
  font-size: 5rem;
}

h3 {
  font-size: 2rem;
}

.product-price {
  font-size: 1.5rem;
}

.product-description {
  font-size: 1.2rem;
}

.all-products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.product {
  overflow: hidden;
  background: var(--background-color);
  text-align: center;
  width: 280px;
  height: 450px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  margin: 2rem;
}

.product:hover {
  box-shadow: 5px 15px 25px #000;
}

.product:hover img {
  object-fit: cover;
}

.product img {
  object-fit: cover;
  object-position: center;
  height: 200px;
  margin: 1rem;
  transition: all 0.3s;
}

.product a:link,
.product a:visited {
  color: var(--background-color);
  display: inline-block;
  text-decoration: none;
  background-color: var(--Title-color);
  padding: 1.2rem 3rem;
  border-radius: 1rem;
  margin-top: 1rem;
  transition: all 0.2s;
  font-size: 1.5rem;
}

.product a:hover {
  transform: scale(1.1);
}
