* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(236, 242, 248);
  padding: 0 8.4rem;
  display: grid;
  place-items: center;
  min-height: 100vh;
  font-size: 0.8125rem;
  font-family: Barlow Semi Condensed;
}
blockquote {
  font-weight: 300;
}
.main-body {
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(4, 1fr);
  row-gap: 1.4rem;
  max-width: 96rem;
  column-gap: 2rem;
}
.item {
  border-radius: 6px;
  padding: 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0px 10px 20px rgba(72, 85, 106, 0.3);
}
.item-img {
  width: 2rem;
  border-radius: 50%;
}
.item-heading {
  font-weight: 300;
  display: flex;
  gap: 1rem;
}
.name {
  font-weight: 400;
  font-size: 0.8rem;
}
.title {
  color: inherit;
  opacity: 0.5;
  font-size: 0.7rem;
}
.item:nth-child(1) {
  background-color: rgb(117, 65, 200);
  color: rgb(236, 242, 248);
  grid-column: span 2;
  position: relative;
}
.item:nth-child(1) .item-img {
  border: 2px solid rgb(117, 65, 200);
}
.item:nth-child(1) .item-quote {
  color: inherit;
  opacity: 0.7;
}
.item:nth-child(1)::before {
  content: "\201d";
  font-size: 30rem;
  position: absolute;
  top: -9rem;
  right: 3.2rem;
  opacity: 0.2;
}
.item:nth-child(2) {
  background-color: rgb(72, 85, 106);
  color: rgb(236, 242, 248);
}
.item:nth-child(2) .item-quote {
  color: inherit;
  opacity: 0.7;
}
.item:nth-child(3) {
  background-color: rgb(255, 255, 255);
  color: rgb(72, 85, 106);
  grid-row: 2;
}
.item:nth-child(3) .item-quote {
  font-weight: 500;
  color: inherit;
  opacity: 0.7;
}
.item:nth-child(5) .item-text {
  font-weight: 600;
}
.item:nth-child(4) {
  background-color: rgb(25, 33, 46);
  color: rgb(236, 242, 248);
  grid-row: 2;
  grid-column: span 2;
}
.item:nth-child(4) .item-img {
  border: 2px solid rgb(117, 65, 200);
}
.item:nth-child(4) .item-quote {
  color: inherit;
  opacity: 0.7;
}
.item:nth-child(5) {
  background-color: rgb(255, 255, 255);
  color: rgb(72, 85, 106);
  grid-row: span 2;
}
.item:nth-child(5) .item-quote {
  color: inherit;
  opacity: 0.7;
  font-weight: 500;
}
.item:nth-child(5) .item-text {
  font-weight: 600;
}
.item-text {
  font-weight: 500;
  font-size: 1.3rem;
}
.item-quote {
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 64rem) {
  body {
    padding: 2.8rem;
  }
  .main-body {
    display: flex;
    flex-flow: column nowrap;

    max-width: 50rem;
    margin: 2.4rem auto;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hwb(228 24% 36%);
}
