.layout {
  width: 100%;
  height: 100vh;

  display: grid;
  grid:
    "header header header" 12vh
    "menu menu menu" 60px
    "body body body" 1fr
    "footer footer footer" 50px / 15% auto 15%;

  gap: 8px;
}

.header {
  grid-area: header;
  position: relative;

  display: flex;
  align-items: center;

  color: #018571;
  padding: 10px;
}

.header img {
  height: 120px;
  width: auto;
}

.header-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.menu {
  grid-area: menu;

  background-color: #018571;
  color: #111111;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

a {
  color: inherit;
  text-decoration: none;
}

.menu a {
  color: white;
  text-decoration: none;
}

.menu img {
  height: 80%;
  width: auto;
}

.social {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social img {
  height: 20px;
  width: 20px;
}

.body {
  grid-area: body;

  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
  gap: 15px;
  padding: 10px;
}

.title {
  text-align: center;
  color: #018571;
}

.article {
  background-color: #f2f2f2;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.article img {
  display: block;
  margin: 20px auto;
  max-width: 500px;
  height: auto;
}

.image-Francois_Compteur {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-Francois_Compteur img {
  position: center;
  max-width: 65%;
  max-height: 80vh;
  height: auto;
  object-fit: contain;
}

.footer {
  grid-area: footer;
  background-color: #018571;
  color: white;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}

.footer-left {
  justify-self: start;
}

.download-btn {
    justify-self: center;
    display: inline-block;
    padding: 10px 20px;
    background-color: #025c4e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;

    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
    background-color: #014437;
    transform: scale(1.05);
}

.footer-right {
  justify-self: end;
}

