@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,600;1,200;1,400;1,600&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  width: 100vw;
  min-height: 100vh;
  padding: 0 8%;
  background-color: hsl(0, 0%, 100%);
  color: hsl(212, 6%, 44%);
  font: 400 15px/1.5 "Poppins", sans-serif;
}

header {
  margin: 3em 0;
  text-align: center;
}
header h1 {
  font: 200 15px/1.5 "Poppins", sans-serif;
  font-size: 1.5em;
}
header .subtitle {
  color: hsl(234, 12%, 34%);
  font: 600 15px/1.5 "Poppins", sans-serif;
  font-size: 1.5em;
  margin-bottom: 0.7em;
}

main {
  margin-bottom: 3em;
}
main article {
  padding: 2em 2em 3em;
  border-top: 3px solid hsl(0, 0%, 100%);
  border-radius: 0.5em;
  margin-bottom: 2em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: column;
}
main article.cyan {
  border-color: hsl(180, 62%, 55%);
}
main article.red {
  border-color: hsl(0, 78%, 62%);
}
main article.blue {
  border-color: hsl(212, 86%, 64%);
}
main article.orange {
  border-color: hsl(34, 97%, 64%);
}
main article h2 {
  font: 600 15px/1.5 "Poppins", sans-serif;
  font-size: 1.5em;
}
main article p {
  margin-bottom: 1.5em;
}
main article img {
  align-self: flex-end;
}

footer {
  margin-bottom: 1em;
}
footer .attribution {
  text-align: center;
}
footer a {
  font: 600 15px/1.5 "Poppins", sans-serif;
  color: hsl(212, 86%, 64%);
  text-decoration: none;
}
footer a:hover {
  color: hsl(180, 62%, 55%);
}

@media screen and (min-width: 769px) {
  body {
    max-width: 1200px;
    margin: auto;
  }
  header {
    max-width: 35em;
    margin: 3em auto;
  }
  header h1,
  header .subtitle {
    font-size: 2.25em;
  }
  main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
  main .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

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