@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 97vh;
}
body header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 0.3em;
  margin-bottom: 3em;
}
body header h1 {
  display: block;
  white-space: nowrap;
}
body header .titletop {
  font-size: 2em;
  font-weight: lighter;
  color: hsl(234, 12%, 34%);
}
body header .titlebottom {
  font-size: 1.9em;
  font-weight: 600;
  color: hsl(234, 12%, 34%);
  letter-spacing: 1px;
}
body header p {
  text-align: center;
  font-weight: 200;
  color: hsl(212, 6%, 44%);
  margin-top: 1em;
  line-height: 1.5em;
  width: 60%;
}
body .wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 25px;
  width: 57%;
  height: 55%;
}
body .wrapper .card {
  border-radius: 5px;
  box-shadow: 0 10px 13px 5px rgba(0, 0, 0, 0.1);
  color: hsl(212, 6%, 44%);
  padding: 1.5em 1.5em;
}
body .wrapper .card img {
  display: flex;
  justify-self: flex-end;
  width: 45px;
  margin-top: 20px;
}
body .wrapper .card h3 {
  font-weight: 600;
  color: hsl(234, 12%, 34%);
  margin-bottom: 0em;
  margin-top: -0.1em;
  font-size: 1em;
}
body .wrapper .card p {
  font-size: 0.62em;
}
body .wrapper .top {
  border-top: hsl(0, 78%, 62%) 5px solid;
  grid-area: 1/3/3/5;
}
body .wrapper .bottom {
  border-top: hsl(34, 97%, 64%) 5px solid;
  grid-area: 3/3/5/5;
}
body .wrapper .left {
  border-top: hsl(180, 62%, 55%) 5px solid;
  grid-area: 2/1/4/3;
}
body .wrapper .right {
  border-top: hsl(212, 86%, 64%) 5px solid;
  grid-area: 2/5/4/7;
}

@media screen and (max-width: 918px) {
  body {
    height: auto;
    padding: 2em;
    display: flex;
  }
  body header {
    font-size: 0.8em;
    width: 100%;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body header .titletop {
    font-size: 1.5em;
  }
  body header .titlebottom {
    font-size: 1.4em;
  }
  body header p {
    width: 100%;
    font-size: 0.9em;
  }
  body .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  body .wrapper p {
    font-size: 1em;
  }
  body .card {
    width: 90%;
    height: 130px;
  }
}/*# sourceMappingURL=style.css.map */