/* Desktop View */

body {
  font-family: "Poppins", sans-serif;
  background-color: hsl(0, 0%, 98%);
  padding: 0px;
}

.container {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-weight: 600;
  color: hsl(234, 12%, 34%);
  text-align: center;
  line-height: 40px;
}

h1::first-line {
  font-weight: 200;
}

h2 {
  font-weight: 600;
    color: hsl(234, 12%, 34%);

}

p {
  font-size: 15px;
  color: hsl(229, 6%, 66%);
  line-height: 25px;
}

header p {
  text-align: center;
  padding: 0px 34% 0px 34%;
}


img {
  margin-top: 30px;
}


.card {
  background-color: hsl(0, 0%, 98%);
  padding: 10px 35px 20px 35px ;
  border-radius: 5px;
  box-shadow: 0px 10px 15px hsla(229, 6%, 66%, 0.274);
  width: 300px;
  margin: 15px;
  margin-top: 25px;
}

.cyan-top {
  border-top: 5px solid hsl(180, 62%, 55%);
}

.red-top {
  border-top: 5px solid hsl(0, 78%, 62%);
}

.orange-top {
  border-top: 5px solid hsl(34, 97%, 64%);
}

.blue-top {
  border-top: 5px solid hsl(212, 86%, 64%);
}


/* Mobile View */
@media (max-width: 375px) {


  .container {
    width: 375px;
  }

  .cards {
  display: flex;
  flex-flow: column wrap;
  }

  header p {
  text-align: center;
  padding: 0px 5px 0px 5px;
  }

  header {
    display: flex;
    flex-flow: column wrap;
  }

}
