html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Arial", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #ffffff;
  /* L'image de fond est chargée depuis le dossier images. */
  background: url('images/background_v2.png') no-repeat center center fixed;
  background-size: cover;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 8px;
  max-width: 90%;
}

.overlay a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
}

.logo {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 120px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  p {
    font-size: 1rem;
  }
  .logo {
    width: 80px;
    top: 1rem;
    right: 1rem;
  }
}
