body {
  background-color: whitesmoke
}
h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: rgb(248, 31, 67);
  text-align: center;
}
.container {
  margin: 120px auto;
  max-width: 600px;
  background-color: rgb(252, 228, 232);
  font-family:Arial, Helvetica, sans-serif;
}
header {
  margin-bottom: 30px;
}
.form-container{
  background-color: rgb(237, 235, 236);
  margin-bottom: 30px;
}
form {
  padding: 30px;
  border-radius: 10px;
  display: flex;
  box-shadow: 0px 20px 60px rgba(145, 88, 97, 0.08);

}
.instruction {
  border: 1px solid rgba(243, 43, 76, 0.5);
  padding: 16px;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: rgb(149, 94, 103);
}
.submit-button {
  margin-left: 10px;
  background: rgb(158, 1, 27);
  color: white;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
  transition: all 150ms ease-in-out;
}
.verse {
  font-size: 16px;
  display: none;
  background-color: white;
  padding: 20px;
  line-height: 1.5;
  border-left: 3px solid rgb(207, 6, 39);
  box-shadow: 0px 20px 60px rgba(145, 88, 97, 0.08);
}
footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}
a {
  color: rgb(158, 1, 27);
}

i{
  color: rgb(188, 67, 87);
}