body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    text-align: center;
  }
  
  .content {
    max-width: 600px;
  }

  h1 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Cera Round Pro", sans-serif; /* Police de caractères Cera Round Pro */
  }

  .bold-text {
    font-weight: bold; /* Utilisation du gras */
    color: #007bff;
    font-weight: 900;
  }
  
  
  button {
    margin-top: 0px;
    padding: 15px 40px 15px 40px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
  }
  
  /* Pour rendre la page responsive */
  @media screen and (max-width: 600px) {
    .content {
      max-width: 80%;
    }
  }
  