body {
  background-color: #f6f1e8;
  text-align: center;
  font-family : "Andale Mono", monospace;
  padding-top: 70px;
  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;
}

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

.navbar a:visited {
  color: #3a6cff;
}

h1 {
  margin-top: 0;
  margin-bottom: 40px;
}

.theme-ligne:first-of-type {
  margin-top: 80px;
}

.theme-ligne {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 70px;
}

.theme {
  color: #777;
  font-family: "Andale Mono", monospace;
  font-weight: normal;
  margin: 0;
}

.toggle {
  color: #3a6cff;
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  padding: 0;
}

.poemes {
  display: none;
  column-count: 3;
  column-gap: 40px;
  max-width: 900px;
  margin: 30px auto;
  text-align: left;
}

.poeme {
  break-inside: avoid;
  margin-bottom: 30px;
  line-height: 1.7;
}

.date {
  font-size: 0.8em;
  opacity: 0.5;
  margin-bottom: 6px;
}

@media (max-width: 700px) {
  
  .navbar {
    justify-content: center;
    gap: 12px;
  }
  .poemes {
    column-count: 1;
    max-width: 500px;
  }
}
.footer {
  margin-top: auto;
  padding: 40px 0 20px 0;
  font-size: 0.75rem;
  color: #8a8a8a;
  text-align: center;
  letter-spacing: 0.05em;
}