/* 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: 180px;
}

section.welcome, section.category {
  background-color: rgba(211, 208, 203, 0.3);
}

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

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

img.welcome-image {
  width: 60%;
  border-radius: 15px;
  filter: drop-shadow(5px 5px 10px rgb(57, 62, 65));
}

div.art-card-wrapper {
  margin-bottom: 40px;
  min-height: 500px;
  max-width: 25%;
  min-width: 350px;
  margin-left: 20px;
  margin-right: 20px;
  border: 1px solid rgb(57, 62, 65);
  padding: 0px !important;
  border-radius: 15px;
  background-color: white;
}

div.art-card {
  margin: 0px;
  width: 100%;
  height: 350px;
  text-align: center;
  overflow: hidden;
  border-radius: 15px;
}

.art-card-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

div.art-card-text {
  min-height: 200px;
  padding-top: 10px;
  align-self: baseline;
  text-align: center;
}

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;
}

.quality-row ul, .search-inset ul {
  list-style-type: none;
  padding: 0;
  margin: 0 !important;
}

.quality-row li, .search-inset li {
  line-height: 1.8rem;
  text-align: center;
}

.center-container {
  display: flex;
  justify-content: center; /* Horizontally centers the image */
}

.search-inset {
  padding-top: 30px;
  width: 80%;
  height: 200px;
  background-color: rgb(88, 123, 127);
  border: none;
  margin-top: 30px;
  margin-bottom: 30px;
  color: white;
}/*# sourceMappingURL=styles.css.map */