#container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--gutter-width);
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  overflow: hidden;
  list-style: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 90px var(--gutter-width);
  box-sizing: border-box;
  align-items: start;
}

#profilepicture {
  grid-column: 3 / span 4;
  text-align: right;
}

#profilepicture img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  object-position: right;
  display: block;
}

#about {
  grid-column: 7 / span 4;
}

#about > p {
  margin-bottom: 15px;
}

#picto-book {
  height: 80px;
  width: 80px;
  margin: auto;
  display: block;
}

#picto-book img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  #about {
    grid-column: 7 / span 5;
  }
}

@media screen and (max-width: 1100px) {
  html,
  body {
    overflow-y: auto;
  }

  #profilepicture {
    grid-column: 2 / span 10;
    margin-bottom: 2rem;
  }

  #profilepicture img {
    object-position: center;
  }
  #about {
    grid-column: 1 / span 12;
  }

  #container {
    align-content: start;
    overflow-y: auto;
  }
}
