/* style.css */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom right, #f7f9fc, #e5edf6);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #1a1a1a;
  text-align: center;
}

.container {
  padding: 2rem;
  max-width: 700px;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin: 1rem;
  border: 3px solid #003366; /* bleu profond */
}

.logo {
  max-width: 220px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366; /* bleu profond */
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

strong {
  color: #339933; /* vert vif */
}

a {
  color: #339933;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #267326;
}
