body {
  background-color: #1a120b;
  display: flex;
  text-align: center;
  margin: auto;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* color: #e5e5cb; */
  color: #3c2a21;
  font-size: 1.1rem;
}

#grid-container {
  border: 2px dashed #e5e5cb56;
  width: 500px;
  min-height: 500px;
  padding: 7px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* grid-template-rows: 1fr 1fr 1fr; */
  /* fr = width of each column */
  grid-template-rows: repeat(4, 1fr);
  /* for 4 boxes ^ */
}

#box1 {
  background-color: rgb(141, 255, 141);
  /* arranging a element to take up a certain amount of space */
  grid-column: 1/3;
  grid-row: 1/4;
}
#box2 {
  background-color: rgb(255, 150, 208);
  /* grid-column: 2/4; */
}
#box3 {
  background-color: rgb(247, 154, 255);
}
#box4 {
  background-color: rgb(255, 255, 138);
  /* grid-column: 1/3;
    grid-row: 2/5; */
}
#box5 {
  background-color: rgb(255, 182, 139);
}
#box6 {
  background-color: rgb(108, 255, 250);
}

#box7 {
  background-color: rgb(108, 150, 255);
}
