#showme {
  transition: all var(--transition-ease);
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../img/palais_justice_004.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  z-index: -1;
}

#showme > * {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

#showme .details {
  display: grid;
  align-content: flex-end;
}

#showme .details .diton {
  font-size: var(--font-size-400);
  font-family: "bold";
  max-width: max-content;
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(-20%);
}

#showme .details.on .diton {
  opacity: 1;
  transform: translate(0);
}

#showme .details .name {
  margin: 10px 0 0;
  font-size: var(--font-size-300);
  transition: all 2s ease;
  opacity: 0;
  transform: translateY(-20%);
}

#showme .details.on .name {
  opacity: 1;
  transform: translate(0);
}

@media screen and (max-width: 600px) {
  #showme {
    height: 300pt;
    padding-bottom: 160pt;
  }

  #showme .details {
    padding: var(--espace);
  }

  #showme .details .diton {
    font-size: var(--font-size-400);
  }
}

@media screen and (min-width: 601px) {
  #showme {
    height: 400pt;
    padding-bottom: 100pt;
  }

  #showme .details {
    padding: var(--espace) var(--espace) var(--espace) calc(var(--espace) * 3);
  }

  #showme .details .diton {
    font-size: calc(var(--font-size-400) * 2);
  }
}

#theabout {
  display: grid;
  gap: var(--espace);
  z-index: 200000;
}

#theabout .imge {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../img/portrait_001.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-050);
  height: 300pt;
  transition: all 1s ease;
}

#theabout .imge.on {
  opacity: 1;
  transform: translate(0);
}

#theabout .text {
  transition: all 1.5s ease;
}

#theabout .text.on {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  #theabout {
    padding: calc(var(--espace) * 3) var(--espace);
    margin-top: -200pt;
  }
}

@media screen and (min-width: 601px) {
  #theabout {
    display: grid;
    grid-template-columns: 200pt 1fr;
    padding-right: calc(var(--espace) * 3);
    padding-left: calc(var(--espace) * 3);
    margin-top: -100pt;
  }

  #theabout .imge {
    height: 300pt;
    opacity: 0;
    transform: translateX(-20%);
  }

  #theabout .text {
    opacity: 0;
  }
}