@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;400;600;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  align-items: center;
  display: flex;
  font-family: 'Fira Sans', sans-serif;
  justify-content: center;
}

.App-header, section, footer {
  border-radius: 0.4rem;
  background-color: rgb(244,228,188);
  display: flex;
  justify-content: space-between;
  height: 10%;
  margin: 0.5rem;
  padding: 0.5rem;
}

.App-header {
  align-items: center;
  background-color: rgb(244,228,188);
  color: rgb(90,83,69);
}

.App-logo {
  height: 3rem;
  margin: 0.5rem;
  width: 7rem;
}

.App-Title {
  /* height: 4rem; */
  width: 30%;
}

.App-nav-links {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 1rem 0.5rem;
}

.App-nav-links li:hover {
  color: rgb(90,83,69);
  cursor: pointer;
}

.App-header-icons-container {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.App-header-icon {
  height: 2rem;
}

.App-hero {
  align-items: center;
  background-color: rgb(244,228,188);
  display: flex;
  justify-content: center;
  max-height: 50rem;
}

.App-hero-img {
  height: 30rem;
}

.App-redirect-button {
  border: 1px solid #ffffff;
  border-radius: 0.4rem;
  padding: 1rem;
}

.App-redirect-button:hover, .App-send-button:hover {
  background-color: #ffffff;
  color:  rgb(244,228,188);
  cursor: pointer;
  opacity: 0.6;
}

.App-images-container {
  background-color: rgb(244,228,188);
  display: flex;
  gap: 0.5rem;
  justify-content: space-evenly;
}

.App-main-image {
  width: 20rem;
}

.App-article {
  font-size: 0.8rem;
  text-align: justify;
  padding: 1rem;
}

.App-product-image {
  border-radius: 10rem;
  cursor: pointer;
  max-width: 15%;
  padding: 1rem;
}

.App-contact-us {
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSfYf_HvPfjmM97wcK2ftva0V7IeIPE63AVvg&usqp=CAU');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: 1rem;
}

.App-input-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 20rem;
  padding: 0.3rem;
}

input, textarea {
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.App-send-button {
  background: none;
  border: 1px solid #ffffff;
  border-radius: 0.4rem;
  color: #ffffff;
  padding: 0.5rem;
}

.App-contact-details {
  padding: 5rem;
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.5rem;
  text-align: center;
}
