@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding: 2rem;
  height: 100vh;
  background-color: hsl(0, 0%, 81%);
}

.container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "a a b c" "d e e c";
}

img {
  border-radius: 100%;
  height: 50px;
}

.card {
  padding: 2rem;
  background-color: hsl(263, 55%, 52%);
  color: hsl(0, 0%, 100%);
  border-radius: 10px;
  line-height: 1.5rem;
}
.card header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  gap: 1.5rem;
}
.card header div h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.card header div p {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: hsl(0, 0%, 81%);
}
.card .info-1 {
  padding: 1rem 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: large;
}
.card .info-2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: hsl(0, 0%, 81%);
}
.daniel {
  grid-area: a;
  background: url("./images/bg-pattern-quotation.svg") hsl(263, 55%, 52%);
  background-repeat: no-repeat;
  background-position: 80% 0%;
}

.jonathan {
  background-color: hsl(217, 19%, 35%);
  grid-area: b;
}

.patrick {
  background-color: hsl(219, 29%, 14%);
  grid-area: e;
}

.kira {
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
  grid-area: c;
}

.jeanette {
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
  grid-area: d;
}

.attribution {
  text-align: center;
  padding-top: 2rem;
}

@media (max-width: 475px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=styles.css.map */