html {
  height: 100%;
}

body {
  background: linear-gradient(
      122.3deg,
      rgb(111, 71, 133) 14.6%,
      rgb(232, 129, 166) 29.6%,
      rgb(237, 237, 183) 42.1%,
      rgb(244, 166, 215) 56.7%,
      rgb(154, 219, 232) 68.7%,
      rgb(238, 226, 159) 84.8%
    )
    no-repeat;
  background-size: cover;
  font-family: "Playfair Display", serif;
}

a {
  color: darkcyan;
}
.container {
  margin: 120px auto;
  max-width: 600px;
}

header {
  margin-bottom: 30px;
}

h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: darkslategrey;
  text-align: center;
}

.form-container {
  padding: 15px 20px;
  background-color: white;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 8px;
  margin-bottom: 30px;
}

form {
  display: flex;
}

.examples {
  line-height: 2;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.6;
}
.request {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: black;
}

.submit-button {
  margin-left: 10px;
  background-color: darkcyan;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  width: 140px;
  font-size: 16px;
}

.quote {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 2;
  border-left: 5px solid darkcyan;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
  border-radius: 2px;
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  font-family: 16px;
  margin-top: 30px;
}


