@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.thin-title {
  font-weight: 200;
}

.bold-title {
  font-weight: 600;
  color: hsl(234, 12%, 34%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  background-color: #f7f4f4;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

body main section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body main section .titles {
  text-align: center;
  margin-bottom: 60px;
}
body main section .titles h2 {
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1.6;
}
body main section .titles .top_pr {
  width: 500px;
  text-align: center;
}
body main section .titles .top_pr p {
  margin-top: 1.2rem;
  color: hsl(212, 6%, 44%);
  font-size: 0.9375rem;
}
body main section .card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  height: 500px;
  width: 60%;
  padding: 10px;
  gap: 30px;
  grid-template-areas: ".     card2     ." "card1 card2 card4" "card1 card3 card4" ".     card3     .";
}
body main section .card-container h3 {
  font-size: 1.25rem;
  margin-bottom: 3px;
}
body main section .card-container p {
  color: hsl(212, 6%, 44%);
  line-height: 1.6;
  font-size: 0.8125rem;
}
body main section .card-container .card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 15px 30px -11px rgba(131, 166, 210, 0.5);
}
body main section .card-container .card-1 {
  grid-area: card1;
  border-top: 5px #45d3d3 solid;
}
body main section .card-container .card-2 {
  grid-area: card2;
  border-top: 5px #ea5353 solid;
}
body main section .card-container .card-3 {
  grid-area: card3;
  border-top: 5px #fcaf4a solid;
}
body main section .card-container .card-4 {
  grid-area: card4;
  border-top: 5px #549ef2 solid;
}

@media only screen and (max-width: 375px) {
  body main section {
    height: auto;
  }
  body main section .titles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
  }
  body main section .titles h2 {
    font-size: 1.5rem;
  }
  body main section .titles .top_pr {
    width: 80%;
  }
  body main section .titles .top_pr p {
    font-size: 0.9375rem;
  }
  body main section .card-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "card1" "card2" "card3" "card4";
    width: 100%;
    height: auto;
    padding: 0 30px 40px 30px;
  }
}
.image_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}/*# sourceMappingURL=styles.css.map */