.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

* {
  top: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  background-color: hsl(30, 25%, 98%);
}

.wrapper {
  max-width: 900px;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 500px;
}

.wrapper div {
  /* border: 1px solid blanchedalmond; */
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  overflow: hidden;
}

.wrapper img {
  width: 100px;
  height: auto;
  display: block;
}

.create {
  background-color: hsl(31, 66%, 93%);
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
}

.create span {
  color: hsl(256, 67%, 59%);
  font-style: italic;
}

.social {
  grid-column: 2/4;
  grid-row: 1;
  background-color: hsl(256, 67%, 59%);
  text-align: center;
  font-size: 1.2rem;
}

.social span {
  color: white;
}
.social #num {
  color: hsl(39, 100%, 71%);
}

.social p {
  margin-top: 0;
  font-size: 0.7rem;
}

.schedule {
  grid-column: 4;
  grid-row: 1/3;
  background-color: hsl(254, 88%, 90%);
}

.AI {
  grid-column: 1;
  grid-row: 2;
  background-color: hsl(39, 100%, 71%);
}

.manage {
  grid-column: 2;
  grid-row: 2;
  background-color: hsl(31, 66%, 93%);
}

.maitain {
  grid-column: 3;
  grid-row: 2;
  background-color: hsl(39, 100%, 71%);
}

.audience {
  grid-column: 2;
  grid-row: 3;
  background-color: hsl(0, 4%, 91%);
}

.grow {
  grid-column: 3/5;
  grid-row: 3;
  background-color: hsl(256, 67%, 59%);
}

.first-column {
  border: none;
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 5px;
}

.create,
.AI {
  flex: 1; /* each takes half the column */
}
