header {
  padding-bottom: 0;
}

main {
  background-image: url('../images/parchemin.png');
  background-size: 100% 173%;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  margin-bottom: 20px;
}

section {
  display: flex;
  justify-content: center;
  margin: 0;
}

.container {
  width: 70vw;
  height: 55vh;
}

.container-form {
  display: flex;
  justify-content: space-around;
}

.container-form-info,
.container-form-message {
  display: flex;
  flex-direction: column;
  width: 43%;
}

.container h1 {
  margin-top: 0;
  padding-bottom: 7px; 
  font-size: 1.5em;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

label {
  color: #000;
  font-size: 0.9em;
  text-shadow: 0.5px 0.75px 0 rgba(0, 0, 0, 1);
}

input,
input[type="text"] {
  border: none;
  border-radius: 0;
  outline: none;
  padding: 20px 0 0 0;
  background: white;
  font-size: 14pt;
}

input[type="email"],
input[type="tel"] {
  font-size: 12pt;
  width: 100%;
}

input[type="text"] {
  margin-bottom: 10px;
}

input[name="nom"] {
  font-weight: bold;
}

.textarea-container {
  position: relative;
  width: 100%;
}

textarea {
  position: relative;
  z-index: 10;
  resize: none;
  width: 100%;
  height: 22vh;
  background: white;
  border: none;
  outline: none;
  font-size: 1.3em;
}

.button-group {
  display: flex;
  justify-content: center;
}

button {
  outline: none;
  background-color: transparent;
  border: none;
  color: #000;
  padding: 10px 15px;
  font-size: 12pt;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 10px;
  text-shadow: 0.5px 0.75px 0 rgba(0, 0, 0, 1);
}

button:hover {
  color: red;
}