@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");

:root {
  /* Colors */
  /* Primary */
  --moderate-violet: hsl(263, 55%, 52%);
  --very-dark-grayish-blue: hsl(217, 19%, 35%);
  --very-dark-blackish-blue: hsl(219, 29%, 14%);

  /* Neutral */
  --light-gray: hsl(0, 0%, 81%);
  --light-grayish-blue: hsl(210, 46%, 95%);

  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 7%);

  /* Typography */
  --font-size: 13px;
  --font-family: "Barlow Semi Condensed", serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  padding: 70px 24px;
  background-color: var(--light-grayish-blue);
  font-family: var(--font-family);
}

main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

section {
  color: var(--color);
  padding: 25px 32px;
  background-color: var(--bgc);
  border-radius: 10px;

  & > div {
    display: flex;
    align-items: center;
    font-size: var(--font-size);

    img {
      border-radius: 50%;
      margin-right: 15px;
      width: 32px;
      height: 32px;
    }

    h2 {
      font-size: 15px;
      font-weight: 500;
    }
    p {
      opacity: 0.5;
    }
  }

  .bold {
    margin: 20px 0;
    font-weight: 600;
    font-size: 20.125px;
  }

  .review {
    opacity: 0.7;
    font-size: var(--font-size);
    margin-right: var(--mr);
  }
}

.sec1 {
  background-repeat: no-repeat;
  background-position: calc(100% - 32px) 0;
  background-image: url(images/bg-pattern-quotation.svg);
}

@media (min-width: 786px) {
  body {
    padding: 165px;
  }
  main {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 0.95fr;
    gap: 30px;

    .sec1 {
      grid-column: 1 / 3;

      .review {
        margin-right: 15px;
      }
    }

    .sec4 {
      grid-column: 2 / 4;

      .review {
        margin-right: 15px;
      }
    }

    .sec5 {
      grid-column: 4 / 5;
      grid-row: 1 / -1;

      .review {
        margin-right: 4px;
      }
    }
  }
}
/* 

## Colors

### Primary

Moderate violet: hsl(263, 55%, 52%)
Very dark grayish blue: hsl(217, 19%, 35%)
Very dark blackish blue: hsl(219, 29%, 14%)
White: hsl(0, 0%, 100%)

### Neutral

Light gray: hsl(0, 0%, 81%)
Light grayish blue: hsl(210, 46%, 95%)

Note for text colors:

1. "Verified Graduate" has the same color as the person's name with 50% opacity
2. Review paragraphs inside the quotations have the same color as well, but are at 70% opacity

## Typography

### Body Copy

- Font size: 13px

### Font

- Family: [Barlow Semi Condensed](https://fonts.google.com/specimen/Barlow+Semi+Condensed)
- Weights: 500, 600

*/
