@font-face {
    font-family:'BubbbleGum';
    font-weight: 400;
    font-style: normal;
    src: url('../public/police/BubbbleGum.otf');
}

@font-face {
    font-family:'BubbbleGum-Bold'; 
    font-weight: 700;
    font-style: bold;
    src: url('../public/police/BubbbleGum-Bold.otf');
}

body{
    overflow-x: hidden;
}

/* MAIN */

h2{
    text-align: center;
    width: 20%;
    margin-top: 5%;
    margin-left: 42%;
    font-family: 'BubbbleGum';
}

form {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 2%;
  }
  
  #bouton {
    width: 15%;
    margin-left: 42.5%;
  }
  label {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  textarea{
    width: 100%;
    height: 300px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }

  input[type="submit"] {
    background-color: #000000;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-right: 50%;
  }
  
  input[type="submit"]:hover {
    background-color: #830d9d;
}

