body,
html {
  margin: 0;
  padding: 0;
}

.jehanne-image {
  width: auto;
  height: 100vh;
  grid-area: jeanne;
}

.jehanne-title {
  height: auto;
  width: 100%;
  grid-area: title;
}

.jehanne-container {
  display: grid;
  grid-template-areas: "jeanne title" "jeanne flags";
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
}

.jehanne-flag {
  opacity: 0.6;
}

.jehanne-flag:hover {
  opacity: 1;
}

.jehanne-flag,
.jehanne-flag-link {
  width: auto;
  height: auto;
  flex: 0 0 100px;
  display: flex;
  flex-flow: column;
  color: #9da99f;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  font-size: 24px;
}

.jehanne-flag-container {
  grid-area: flags;
  display: flex;
  flex-flow: row wrap;
}

.jehanne-flags {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 0 0 100%;
  padding-bottom: 100px;
}