/* SCSS RGB */
/* SCSS Gradient */
/* SCSS Custom Properties */
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
  font-size: 16px;
  font-family: Inter, Arial, sans-serif;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.flex-container-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: flex-start;
}

.top-row {
  padding-top: 200px;
}

section.welcome, section.category {
  background-color: rgba(87, 87, 47, 0.5);
}

.row {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

/** Typeography **/
h1 {
  color: white;
  text-transform: uppercase;
}

h2, h3 {
  text-transform: uppercase;
}

p {
  text-align: justify;
}

button, a.button-category, a.button-welcome {
  background-color: rgb(45, 49, 66);
  color: white;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.5s ease-in-out;
}

a.button-category {
  padding: 10px 20px;
}

a:hover, button:hover {
  color: rgb(214, 36, 20);
  text-decoration: none;
}

/** images **/
img.responsive {
  width: 100%;
  height: auto;
}

section.row.quality-row {
  padding-top: 30px;
  padding-bottom: 30px;
}

.quality-icon {
  background-color: rgb(219, 234, 254);
  border-radius: 50%;
  padding: 15px;
}

img.white-icon {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
}

.center-container {
  display: flex;
  justify-content: center; /* Horizontally centers the image */
}/*# sourceMappingURL=styles.css.map */