.box {
  background-color: #1EE196;
  border-radius: 15px;
}

.box-1 {
  background-color: #1ECBE1;
  grid-column-start: 1;
  grid-column-end: 2;
}

.box-2 {
  background-color: #1E6AE1;
}

.box-4 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 6;
}

.container {
  height: 50vh;
  grid-gap: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 10% 10% 10% 10% 10%;
}