body {
  margin: 0;
  padding: 0;
  font-family: 'Andale Mono', monospace;
  background-color: #f7f7f5;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  z-index: 1000;
}

.navbar a {
  color: #3a6cff;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.navbar a:hover {
  color: #2550a0;
  border-bottom: 2px solid #3a6cff;
}

.navbar a:visited {
  color: #3a6cff;
}
.wrapper-texte {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conteneur-texte {
  width: 700px;
  max-width: 85%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #888;
  box-sizing: border-box;
  padding: 0 10px;
}
.footer {
  margin-top: auto;
  padding: 40px 0 20px 0;
  font-size: 0.75rem;
  color: #8a8a8a;
  text-align: center;
  letter-spacing: 0.05em;
}