#biography {
  width: 85%;
  display: flex;
  flex-direction: column;
  padding: 130px 0 115px 0;
  margin: 0 auto;
  height: 100%;
}
#biography #titre {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--titre);
  text-transform: uppercase;
  border-bottom: 2px solid var(--titre);
  margin-bottom: 20px;
}
#biography #container {
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 50px;
}
#biography #container .description {
  font-size: 1.2rem;
  text-align: justify;
  margin: 0;
  font-weight: 300;
}
#biography #container .description span {
  font-weight: 400;
  color: var(--titre);
  border-bottom: 1px solid var(--titre);
  width: 100%;
  display: flex;
  padding-bottom: 4px;
  margin-bottom: 8px;
}
#biography #container img {
  height: 100%;
}
@media (max-width: 768px) {
  #biography {
    padding: 70px 0;
  }
  #titre {
    font-size: 22px !important;
    padding-top: 30px !important;
    margin-bottom: 14px !important;
  }
}
@media (max-width: 1111px) {
  #biography {
    height: fit-content !important;
  }
  #biography #container {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 1699px) and (min-width: 1112px) {
  #container img {
    position: fixed;
    height: calc(100vh - 230px) !important;
  }
  #container .description {
    padding-left: calc(((100vh - 230px) * 0.833) + 50px);
    overflow-x: hidden;
    overflow-y: scroll;
  }
  #footer {
    position: absolute;
    bottom: 0;
  }
}
@media (min-width: 1700px) {
  .description {
    column-count: 2;
    column-fill: auto;
  }
  #footer {
    position: absolute;
    bottom: 0;
  }
}
