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

body {
  font-size: 13px;
  font-family: "Barlow Semi Condensed", sans-serif;
  background-color: #ecf2f8;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  width: 85vw;
  height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.s1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  background-color: #7541c8;
}

.s1 p {
  color: white;
}

.s2 {
  background-color: #48556a;
  color: white;
}

.s2 p {
  color: white;
}

.s2 .profile p, .s1 .profile p, .s5 .profile p {
  color: white;
}

.s3 {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}

.s4, .s3 {
  background-color: white;
  color: #48556a;
}

.s5 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  background-color: #19212e;
}

.s5 p {
  color: white;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 200%;
  padding: 1rem 2rem;
  padding-right: 2rem;
  color: white;
  background-color: #cfcfcf;
  border-radius: 10px;
}

section .profile {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 1rem;
}

section .profile img {
  border-radius: 50%;
  margin-right: 1.5rem;
  zoom: 70%;
}

section .profile p {
  color: #48556a;
  opacity: 0.5;
}

section h1 {
  margin-bottom: 1rem;
}

section p {
  color: #48556a;
  opacity: 70%;
  line-height: 150%;
  font-size: 13px;
  margin-bottom: 0rem;
  padding-right: -1rem;
}
/*# sourceMappingURL=style.css.map */