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

body {
  margin-top: 100px;
  font-size: 13px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(320px, auto));
  margin: 0 auto;
  gap: 40px;
}

.container > div {
  border-radius: 12px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  color: hsl(0, 0%, 100%);
  padding: 40px;
}

.profilecontainer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

img {
  border-radius: 50%;
  border: 2px solid #996ed9;
  width: 35px;
  display: inline-block;
}

.profile {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  margin-top: 3px;
}

.test1 {
  display: flex;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  margin-bottom: 20px;
}

.test2 {
  display: flex;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.25px;
  line-height: 1.35;
}

.color1 {
  color: hsl(224, 10%, 45%);
}

.color2 {
  color: hsl(217, 19%, 35%);
}

.dan {
  background-image: url("images/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: top 10px right 100px;
  background-color: hsl(263, 55%, 52%);
  grid-column: 1/3;
  grid-row: 1;
}

.jon {
  background-color: hsl(217, 19%, 35%);
  grid-column: 3/4;
  grid-row: 1;
}

.jean {
  background-color: hsl(0, 0%, 100%);
  grid-column: 1/2;
  grid-row: 2;
}

.pat {
  background-color: hsl(219, 29%, 14%);
  grid-column: 2/4;
  grid-row: 2;
}

.kira {
  background-color: hsl(0, 0%, 100%);
  grid-column: 4/5;
  grid-row: 1/3;
}

.attribution {
  margin: 50px 0 50px 0;
}

@media screen and (max-width: 500px) {
  .container {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=styles.css.map */
