.container {
  display: grid;
  grid-auto-rows: auto;
  grid-auto-columns: auto;
  gap: 1em;

  grid-template-areas:
    "box1 box1 box2 box3"
    "box1 box1 box4 box5";
}

@media(max-width:70em) {
  .container {
    grid-template-areas:
      "box1 box1 box2"
      "box1 box1 box3"
      "box4 box5 box5";
  }
}


@media(max-width:56em) {
  .container {
    grid-template-areas:
      "box1 box1 "
      "box1 box1 "
      "box2 box3 "
      "box4  ."
      "box5 box5";
  }
}


.item:nth-child(1) {
  grid-area: box1;
  /* background-color: lightcoral; */
}

.item:nth-child(2) {
  grid-area: box2;
  /* background-color: lightseagreen; */
}

.item:nth-child(3) {
  grid-area: box3;
  /* background-color: lightsteelblue; */
}

.item:nth-child(4) {
  grid-area: box4;
  /* background-color: lightpink; */
}

.item:nth-child(5) {
  grid-area: box5;
  /* background-color: lightgoldenrodyellow; */
}

.item {
  background-color: indianred;
  color: blanchedalmond;
  width: 100%;
  height: 100%;
}

body {
  display: grid;
  place-content: center;

  height: 80vh;
  background: black;
  color: white;
}

a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}