body {
  margin: 0;
  padding: 4px;
  font-family: "Helvetica Neue", sans-serif;
  background: #0d0d0d;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100dvh;
  text-align: center;
  flex-direction: column;
  /* Ajout pour le word wrap */
  word-break: break-word;
  overflow-wrap: break-word;
  /* Pour éviter l'ascenseur horizontal */
  max-width: 100vw;
  box-sizing: border-box;
  gap: 20px;
}

h1 {
  font-size: 3em;
  color: #ffffff;
}

p {
  font-size: 1.2em;
  color: #aaaaaa;
}

#email-button {
  margin-top: 2em;
  padding: 1em 2em;
  background: #4bffa5;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.button:hover {
  background: #32e68d;
}

.logo {
  width: 300px;
  height: auto;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 20px;
}

.logo {
  width: 100%;
}
@media (min-width: 600px) {
  .logo {
    width: 300px;
  }
}

.responsive-break {
  max-width: 350px;
  margin: 0 auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 600px) {
  .responsive-break{
    max-width: 700px; 
    width: auto;
  }
}




.mdn-security-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  height: auto;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 20px;
}

@media (min-width: 600px) {
  .mdn-security-img {
    width: 700px;
    max-width: 700px;
    font-size: 1em;
  }
}
