header {
  margin-bottom: 30px;
}

body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/172/248/original/lovely.jpg?1755202680");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

h1 {
  font-weight: 800;
  font-size: 45px;
  line-height: 1.5;
  text-align: center;
  padding: 20px;
  color: white;
  -webkit-text-stroke: 1px white;
  text-shadow: 0 0 10px rgb(150, 51, 51), 0 0 20px rgb(150, 51, 51);

  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  box-shadow: rgb(150, 51, 51) solid;
  border-radius: 10px;
}

.container {
  margin: 120px auto;
  max-width: 600px;
  height: 600px;
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/172/248/original/lovely.jpg?1755202680");
  border-radius: 10px;
  box-shadow: 0 0 10px white, 0 0 20px white;
}

form {
  padding: 30px;
  border-radius: 10px;
  display: flex;
  margin-bottom: 30px;
}
.instructions {
  padding: 16px;
  width: 100%;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  background: rgb(150, 51, 51);
  outline: 2px white solid;
  outline-offset: 1px;
  color: white;
}
::placeholder {
  font-size: 19px;
  color: whitesmoke;
  border-radius: 10px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.submit-button {
  margin-left: 10px;
  background: rgb(150, 51, 51);
  color: white;
  outline: 2px white solid;
  outline-offset: 1px;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  width: 150px;
  font-size: 18px;
  cursor: pointer;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
.poem {
  font-size: 20px;
  color: rgb(150, 51, 51);
  background: transparent;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid rgb(150, 51, 51);
  border-right: 3px solid rgb(150, 51, 51);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px white, 0 0 20px white;
}
.hidden {
  display: none;
}
footer {
  text-align: center;
  font-size: 18px;
  margin-top: 230px;
  color: white;
}
a {
  color: rgb(150, 51, 51);
}
.poem strong {
  color: white;
}
.form-container {
  background-color: transparent;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 10px rgb(150, 51, 51), 0 0 20px rgb(150, 51, 51);
  padding: 10px;
  height: 120px;
}
.hint {
  line-height: 1.5;
  margin-top: 3px;
  font-size: 15px;
  color: rgb(150, 51, 51);
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
