@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&family=Josefin+Sans:wght@400;700&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: hsl(210, 46%, 95%);
  font-size: 13px;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.container {
  margin: 10px auto;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  width: 65%;
}

.profile {
  display: flex;
  align-items: center;
}

.details h4 {
  font-size: 12px;
  margin: 0;
  z-index: 1;
  position: relative;
}

.quotation {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 0;
}

.details p {
  font-size: 11px;
  margin: 0;
  opacity: 50%;
  z-index: 1;
}

.images {
  width: 30px;
  height: 30px;
  border: 1px solid purple;
  border-radius: 50%;
  margin-right: 15px;
}

.box {
  border-radius: 10px;
  padding: 30px;
}

.box p {
  opacity: 70%;
  text-align: justify;
}

.box:nth-child(1) {
  grid-area: 1/1/2/3;
  background-color: hsl(263, 55%, 52%);
  color: hsl(210, 46%, 95%);
  position: relative;
}

.box:nth-child(2) {
  grid-area: 1/3/2/4;
  background-color: hsl(217, 19%, 35%);
  color: hsl(210, 46%, 95%);
}

.box:nth-child(3) {
  grid-area: 1/4/3/5;
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
}

.box:nth-child(4) {
  grid-area: 2/1/3/2;
  background-color: hsl(0, 0%, 100%);
  color: hsl(217, 19%, 35%);
}

.box:nth-child(5) {
  grid-area: 2/2/3/4;
  background-color: hsl(219, 29%, 14%);
  color: hsl(210, 46%, 95%);
}

.box h3 {
  margin: 15px 0 15px 0;
  z-index: 1;
  position: relative;
}

@media (max-width: 996px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
  .box:nth-child(1) {
    grid-area: initial;
  }
  .box:nth-child(2) {
    grid-area: initial;
  }
  .box:nth-child(3) {
    grid-area: initial;
  }
  .box:nth-child(4) {
    grid-area: initial;
  }
  .box:nth-child(5) {
    grid-area: initial;
  }
}
@media (max-width: 576px) {
  .container {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */