body {
  min-width: 100vw;
  min-height: 100vh;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biography {
  padding: 0rem 0px 5rem 0;
  margin: 0;
}

.centered-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width: calc(100% - 10px);
  top: 8rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 20px;
  height: auto;
}

#about {
  display: none;
}

section {
  grid-column: 3 / span 4;
  margin-bottom: 2rem;
  text-align: center;
}

section:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  section {
    grid-column: 2 / span 6;
  }
}

@media screen and (max-width: 600px) {
  section {
    grid-column: 1 / span 8;
  }
}
