body {
  font-size: 20px;
  line-height: 22.5px;
  font-family: sans-serif;
  font-style: normal;
  letter-spacing: 0.015em;
}

form {
  margin: 0 auto;
  max-width: 30vw;
}

.title {
  font-size: 6vw;
  line-height: 7vw;
  text-align: center;
  padding: 2vw;
}

.input {
  box-sizing: border-box;
  border: 1px solid black;
  border-radius: 4px;
  padding: 14px;
  margin: 3px;
  display: inline-block;
  width: 100%;
  color: black;
  font-size: 20px;
  line-height: 22.5px;
  font-family: sans-serif;
  font-style: normal;
  letter-spacing: 0.015em;
}

button {
  border: 1px solid black;
  border-radius: 4px;
  background-color: transparent;
  color: blue;
  padding: 14px;
  margin: 3px;
  font-size: 20px;
  line-height: 22.5px;
  font-family: sans-serif;
  font-style: normal;
  letter-spacing: 0.015em;
}

button:hover {
  transition: 100ms;
  background-color: yellow;
}

textarea {
  resize: vertical;
}