
@font-face {
  font-family: "MaPolice";
  src: url("./image/Faith.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MaPolice2";
  src: url("./image/Mom.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}


{
box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px;

  font-family: "MaPolice2", sans-serif;

  background-image: url("image/fond.gif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.form-container {
  width: 100%;
  max-width: 600px;

  padding: 45px;

  background: transparent;

  border-radius: 20px;

  box-shadow: none;
}

h1 {
  margin: 0 0 10px;

  text-align: center;

  font-family: "MaPolice", sans-serif;
  font-size: 60px;
  font-weight: normal;
  color: #000000;
}

.description {
  font-size: 16px;
  text-align: center;
  line-height: 1.6;

  margin-bottom: 35px;

  color: #000000;
}

.question {
  margin-bottom: 25px;
}

label {
  display: block;

  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

input,
textarea {
  width: 90%;
  display: block;
  margin: 8px auto;

  padding: 12px 15px;

  background-color: #dff3ff;
  background-image: radial-gradient(
    circle at 0 -40%,
    #ffffff,
    50%,
    #dff3ff 60%,
    90%,
    #9ed7ff
  );

  border: 1px solid #ffffff;
  border-radius: 25%;

  box-shadow:
    0 -1px 10px #dff3ff inset,
    0 -10px 15px rgba(120, 190, 255, 0.45) inset,
    0 0 5px 3px #9ed7ff;

  color: #a6a6a6;
  font-family: inherit;
  font-size: 16px;

  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 15px;

  border: none;
  border-radius: 10px;

  background: #111;
  color: white;

  font-family: inherit;
  font-size: 25px;
  font-weight: 600;

  cursor: pointer;
}

button:hover {
  background: #333;
}

@media (max-width: 600px) {
  body {
    padding: 20px;
    align-items: flex-start;
    padding-top: 50px;
    background-attachment: scroll;
  }

  .form-container {
    max-width: 100%;
    padding: 20px 5px;
  }

  h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .question {
    margin-bottom: 22px;
  }

  label {
    margin-bottom: 7px;
  }

  input,
  textarea {
    font-size: 18px;
    padding: 13px;
    border-radius: 8px;
  }

  textarea {
    min-height: 110px;
  }

  button {
    padding: 14px;
    font-size: 25px;
  }
}

h1 img {
  height: 1em;
  width: auto;
  vertical-align : middle;
}

.small-text {
  font-size: 13px;
  color: #000000;
  font-weight: normal;
}