/* RESET de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background-color: #0D006C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 20px;
}

/* Logo */
.logo img {
  width: 40px;
  height: 40px;
  margin-bottom: 60px;
}

/* Container principal */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

.content {
  max-width: 600px;
  width: 100%;
}

.container_info {
  margin-top: 25%;
}

/* Titres et paragraphes */
h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
}

/* Liens */
a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #d1c4ff;
  outline: none;
}

/* Bouton */
.button {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #14006D;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  margin-top: 20px;
}

.button:hover,
.button:focus {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #f0f0ff;
  outline: none;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 30px 0 10px;
  font-size: 0.9em;
  color: #d1c4ff;
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6em;
  }

  p {
    font-size: 1em;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .container_info {
    margin-top: 30%;
  }
}
