.paragraph__contact {
  font-size: 1.6rem;
  padding-bottom: 2rem;
}
.form__contact {
  display: flex;
  flex-direction: column;
}
.label__input-contact {
  font-size: 1.2rem;
  padding-bottom: 0.7rem;
}
.input__contact {
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 2rem;
  height: 1.5rem;
  width: 40%;
}
.textarea__contact {
  height: 10rem;
  margin-top: 1rem;
}
.button {
  width: 13rem;
  font-size: 1.1rem;
  padding: 15px 15px;
  border-radius: 5px;
  text-align: center;
  background: #000000;
  color: #FFFFFF;
  cursor: pointer;
}
.hover:hover{
  border: 2px solid rgb(228, 36, 36);
}
@media screen and (max-width: 768px) {
  .input__contact{
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .button{
    width: 100%;
  }
}