body {
  background: hsl(210, 46%, 95%);
  font-family: "Barlow Semi Condensed", sans-serif;
}

p,
span {
  color: hsl(0, 0%, 81%);
  font-size: 0.875em;
}

p {
  line-height: 1.5em;
}

h1,
h2 {
  color: #fff;
}

span {
  opacity: 50%;
}

h1 {
  font-size: 1.3125em;
  margin: 15px 0;
}

.grid-container {
  width: 1140px;
  margin: 0 auto;
  margin-top: 15px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "daniel daniel jonathan kira"
    "jeannete patrick patrick kira";
}

.profile-container {
  display: flex;
  align-items: center;
}

.profile-container img {
  border-radius: 50%;
  margin-right: 15px;
  max-width: 40px;
  max-height: 40px;
}

.quote {
  padding: 20px;
  border-radius: 5px;
  background: chocolate;
  box-shadow: 0 5px 15px 3px hsl(0, 0%, 81%);
}

/* QUOTES */
.quote-1 {
  position: relative;
  background: hsl(263, 55%, 52%);
  grid-column: span 2;
}

.quote-1 h1 {
  position: relative;
  z-index: 2;
}

.quote-1 > img {
  position: absolute;
  top: 0;
  right: 160px;
  z-index: 1;
}

.quote-2 {
  background: hsl(217, 19%, 35%);
}

.quote-3 {
  grid-row: 2/3;
  background: #fff;
}

.quote-4 {
  grid-row: 2/3;
  grid-column: 2/4;
  background: hsl(219, 29%, 14%);
}

.quote-5 {
  grid-row: span 2;
  background: #fff;
}

.quote-3 h1,
.quote-3 h2,
.quote-5 h1,
.quote-5 h2 {
  color: hsl(217, 19%, 35%);
}

@media (max-width: 1140px) {
  .grid-container {
    max-width: calc(100% - 40px);
    margin: 20px auto;
    gap: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .quote + .quote {
    margin-top: 20px;
  }
  .quote-1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .quote-1 > img {
    right: 20px;
  }
  .quote-2 {
    grid-row: 2/3;
  }
  .quote-3 {
    grid-row: 3/4;
  }
  .quote-4 {
    grid-row: 4/5;
    grid-column: 1/2;
  }
  .quote-5 {
    grid-row: 5/6;
  }
}
