@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed: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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow Semi Condensed", sans-serif;
}

body {
  background-color: #F5F5F5;
  color: hsl(0, 0%, 81%);
  font-size: .8125rem;
  line-height: 1.4;
}

main {
  display: flex;
  align-items: center;
  padding-block: 2rem;
  min-height: 100dvh;
}

.testimonial-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  place-content: center;
  gap: 1.5rem;
  width: min(90%, 70rem);
  margin-inline: auto;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background-color: gray;
  border-radius: .5rem;
  box-shadow: 1rem 1.75rem 1rem #cccdd3;
}

@media screen and (min-width: 68rem) {
  .testimonial-grid-wrapper {
    grid-template-columns: repeat(4, 15.875rem);
  }

  .testimonial:nth-child(1) {
    background-image: url("./assets/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: 80% 0;
    grid-column: span 2;
  }

  .testimonial:nth-child(4) {
    grid-column: span 2;
  }

  .testimonial:nth-child(5) {
    grid-column-start: 4;
    grid-row: 1 / 3;
  }

}


.testimonial:nth-child(1) {
  background-color: hsl(263, 55%, 52%);
}

.testimonial:nth-child(2) {
  background-color: hsl(217, 19%, 35%);
}

.testimonial:nth-child(3) {
  background-color: hsl(0, 0%, 100%);
  color: hsl(219, 29%, 14%);
}

.testimonial:nth-child(4) {
  background-color: hsl(219, 29%, 14%);
}

.testimonial:nth-child(5) {
  background-color: hsl(0, 0%, 100%);
  color: hsl(219, 29%, 14%);
}

.graduate {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.graduate img {
  border-radius: 50%;
}

.name {
  font-weight: 500;
}

.message {
  font-size: 1.25rem;
  font-weight: 600;
}