body {
  background-color: #E6E6E6; /* Gris perle */
  font-family: 'Nunito', sans-serif;/* font corp du texte Air&R... */
  color: #333; /* Gris anthracite doux pour le texte */
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif; /* font titre de Air&R... */
}

header {
  background-color: #0CC80A; /* Vert vif Air&R... */
  padding: 1rem;
  color: white;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin-right: 1rem;
}

main {
  padding: 1rem;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
  }
}

.activity-title {
  margin-top: 2rem;
  margin-bottom: 0rem;
  font-weight: bold;
}

.accent-title {
  color: #0CC80A; /* Vert vif Air&R... */
}

section {
  position: relative;
  padding-left: 10%;
  padding-right: 10%;
}

.home-illustration {
  display: block;
  max-width: 100%;
  width: 30%;
  float: right;
  height: auto;
  margin: 0 0 1rem 10%;
  border-radius: 5rem;
}

.map-frame {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 1rem;
  margin-top: 1rem;
}