html {
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: inherit;
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

body {
  margin: auto;
  flex-direction: column;
  justify-content: center;
  background-color: hsl(0deg, 0%, 98%);
  align-items: stretch;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  line-height: 1.5;
  font-size: 15px;
  padding: 2rem;
}

h1 {
  color: hsl(234deg, 12%, 34%);
  margin-top: 0;
  margin-bottom: 0.625rem;
  font-size: 16.5px;
}

h2 {
  color: hsl(234deg, 12%, 34%);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 600;
  font-size: 19.5px;
}

p {
  margin-top: 0;
  margin-bottom: 0.9375rem;
  font-size: 200;
  font-size: 13.5px;
}

.card-container {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(1, 1fr);
  grid-template-areas: "supervisor" "team-builder" "karma" "calculator";
  max-width: 23.4375rem;
  justify-items: center;
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 0.9375rem;
}
@media only screen and (min-width: 23.4375rem) {
  .card-container {
    max-width: 56.25rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "supervisor team-builder calculator" "supervisor karma calculator";
    align-items: center;
  }
}

.container {
  max-width: 23.4375rem;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
@media only screen and (min-width: 23.4375rem) {
  .container {
    max-width: 56.25rem;
  }
}

.introduction {
  max-width: 23.4375rem;
  text-align: center;
}
@media only screen and (min-width: 23.4375rem) {
  .introduction {
    max-width: 18.75rem;
    margin: auto;
  }
}

.semi-header {
  margin-bottom: 0.3125rem;
  font-size: 16.5px;
}

.perex {
  margin-bottom: 1.25rem;
  font-size: 15px;
}

.card {
  max-width: 23.4375rem;
  text-align: left;
  padding: 0.9375rem;
  border-radius: 0.3125rem;
}
@media only screen and (min-width: 23.4375rem) {
  .card {
    max-width: 18.75rem;
  }
}

.icon {
  width: 3rem;
  height: 3rem;
  display: block;
  margin-left: auto;
}

.supervisor {
  box-shadow: 0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), -0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), 0 -0.3125rem 0 hsl(180deg, 62%, 55%);
  grid-area: supervisor;
}

.team-builder {
  box-shadow: 0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), -0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), 0 -0.3125rem 0 hsl(0deg, 78%, 62%);
  grid-area: team-builder;
}

.karma {
  box-shadow: 0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), -0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), 0 -0.3125rem 0 hsl(34deg, 97%, 64%);
  grid-area: karma;
}

.calculator {
  box-shadow: 0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), -0.1875rem 0.3125rem 0.625rem hsl(229deg, 6%, 66%), 0 -0.3125rem 0 hsl(212deg, 86%, 64%);
  grid-area: calculator;
}
@media only screen and (min-width: 23.4375rem) {
  .calculator {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=/main.72e478e6.css.map */