/* Base */

body {
  background: #f2f2f2;
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

main {
  width: 520px;
  max-width: 90%;
  margin: 100px auto;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 0 #e0e0e0;
}

/* Titres & textes */

h1 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.question {
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin: 25px 0;
}

/* Formulaire */

form {
  margin-top: 30px;
}

label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

label span {
  font-size: 12px;
  color: #555;
}

input,
textarea {
  width: 100%;
  border: 1px solid #aaa;
  padding: 8px;
  font-family: inherit;
  font-size: 14px;
  background: #fafafa;
  box-sizing: border-box;
}

textarea {
  resize: none;
  margin-top: 5px;
}

/* Consentement */

.consent {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-top: 25px;
}

/* Bouton */

button {
  display: block;
  margin: 30px auto 0;
  padding: 6px 18px;
  font-family: inherit;
  font-size: 14px;
  background: #e6e6e6;
  border: 1px solid #999;
  cursor: pointer;
}

button:hover {
  background: #dcdcdc;
}

/* Footer */

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
}

footer a {
  color: #111;
  text-decoration: underline;
}

/* Dons */

ul.dons {
  list-style: none;
  padding: 0;
  text-align: center;
}

ul.dons li {
  margin: 10px 0;
}

/* Responsive téléphone */

@media (max-width: 600px) {
  main {
    margin: 40px auto;
    padding: 25px 20px;
  }

  h1 {
    font-size: 24px;
  }

  .question {
    font-size: 16px;
  }
}
