@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&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins: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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

.card {
  /* border: 1px solid red; */
  margin: 10px;
  padding: 30px;
  color: white;
  border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

p {
  margin: 0;
  margin-top: 4px;
}

.name {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.name img {
  width: 30px;
  border-radius: 50%;
  object-fit: contain;
}

#container {
  width: 85%;
  height: auto;
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.header {
  font-weight: 600;
  margin-top: 14px;
  font-size: 20px;
  line-height: 24px;
}

.para {
  margin-top: 14px;
  line-height: 20px;
  font-size: 14px;
}

.card-1 {
  background-color: #7541c8ff;
  grid-area: 1;
}

.card-2 {
  background-color: #48556aff;
  grid-area: 2;
}

.card-3 {
  background-color: #ffffff;
  color: gray;
}

.card-4 {
  background-color: #19212eff;
}

.card-5 {
  background-color: #ffffff;
  color: gray;
}

.name > div:last-child > p:last-child {
  font-size: 13px;
}
@media (max-width: 1440px) and (min-width: 376px) {
  #container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    /* align-items: center; */
    grid-template-areas:
      "a a b c"
      "d e e c";
    flex-wrap: nowrap;
  }
  .card-1 {
    grid-area: a;
  }
  .card-2 {
    grid-area: b;
  }
  .card-5 {
    grid-area: c;
  }
  .card-3 {
    grid-area: d;
  }
  .card-4 {
    grid-area: e;
  }
}
