@import url("https://fonts.googleapis.com/css2?family=Shantell+Sans:ital,wght@1,300&display=swap");
body {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/38816/image-from-rawpixel-id-2044837-jpeg.jpg")
    center center no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: grid;
}

.outerdiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.help {
  font-family: "Shantell Sans", cursive;
  font-size: 40px;
  color: #32ae8e;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f8f4e5;
  height: 400px;
  width: 800px;
  border: solid;
  border-radius: 100px;
}

input {
  background-color: #f8f4e5;
  width: 500px;
  border: solid;
  border-radius: 100px;
  margin-top: 20px;
}

textarea {
  width: 500px;
  background-color: #f8f4e5;
  border: solid;
  resize: none;
  height: 30px;
  border-radius: 200px;
  margin-top: 20px;
}
