/*RESET*/
/* Simple CSS Reset */
/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margins */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/**************
IMPORT FONTS
**************/
/*COLOR PALETTE*/
/*************
FLUID
**************/
/*************
Mixins
**************/
body {
  background-color: #fafafa;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}

main {
  display: grid;
  place-items: center;
}
main section {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 51em) {
  main section {
    max-width: 840px;
  }
}
@media (min-width: 73em) {
  main section {
    max-width: 1200px;
  }
}

.intro {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.intro__title {
  color: hsl(235, 17%, 40%);
  font-weight: 200;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
}
.intro__title--emphasize {
  font-weight: 500;
  display: block;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
}
.intro__text {
  font-size: 0.95rem;
  text-align: center;
  color: hsl(0, 0%, 70%);
  max-width: 500px;
  font-size: clamp(0.9375rem, 0.85rem + 0.3vw, 1rem);
}

.cards {
  display: grid;
  gap: 2rem;
  place-items: center;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
}
@media (min-width: 73em) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.cards .card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 8px;
  padding: 2rem;
  min-height: 280px;
  width: 370px;
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: right 2rem bottom 1.8rem;
  box-shadow: 0 10px 25px -5px rgba(13, 0, 64, 0.1), 0 8px 10px -6px rgba(13, 0, 64, 0.1);
}
.cards .card__title {
  color: hsl(235, 17%, 40%);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.cards .card__text {
  color: hsl(0, 0%, 70%);
  font-size: 0.8rem;
}
.cards .card--supervisor {
  border-top: 3px solid hsl(180, 62%, 55%);
  background-image: url("../images/icon-supervisor.svg");
}
@media (min-width: 73em) {
  .cards .card--supervisor {
    align-self: center;
    grid-column: 1/2;
    grid-row: 1/-1;
  }
}
.cards .card--teambuilder {
  border-top: 3px solid hsl(0, 78%, 62%);
  background-image: url("../images/icon-team-builder.svg");
}
.cards .card--karma {
  border-top: 3px solid hsl(34, 97%, 64%);
  background-image: url("../images/icon-karma.svg");
}
.cards .card--calculator {
  border-top: 3px solid hsl(212, 86%, 64%);
  background-image: url("../images/icon-calculator.svg");
}
@media (min-width: 73em) {
  .cards .card--calculator {
    align-self: center;
    grid-column: 3/-1;
    grid-row: 1/-1;
  }
}

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