main {
  display: grid;
  grid-template-rows: auto 1fr 1fr 1fr;
  grid-template-columns: 5fr 2fr 5fr;
  height: 80vh;
  width: 100%;
}

h1 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  justify-self: center;
  align-self: center;
  margin: 5px;
}
section {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: 1fr;
  padding: 1em;
}
section:nth-child(2n + 1) {
  grid-column: 1 / 5;
}
section:nth-child(2n) {
  grid-column: 1 / 5;

  background-color: gainsboro;
}

section:nth-child(2n) .image-container {
  grid-column: 3 / 4;
}

section:nth-child(2n + 1) .image-container {
  grid-column: 1 / 2;
}

.project-image {
  object-fit: contain;
  width: 100%;
  max-height: 100%;
  margin: auto;
  /* border: 1px solid black; */
  box-shadow: 2px 2px 10px black;
}
section:nth-child(2n) .project-description {
  grid-column: 1 / 2;
}
section:nth-child(2n + 1) .project-description {
  grid-column: 3 / 4;
}
h2 {
  margin-top: 0px;
}
