body {
  background-color: antiquewhite;
  font-family: Georgia, "Times New Roman", Times, serif;
}
header {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 20px;
}
.container {
  margin: 120px auto;
  max-width: 600px;
}
.form-container {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  width: 100%;
  box-sizing: border-box;
}
form {
  display: flex;
  justify-content: space-between;
}
p {
  opacity: 0.6;
  font-size: 12px;
  font-style: italic;
  margin-top: 5px;
  margin-bottom: 0;
}
.topic {
  font-size: 16px;
  padding: 12px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  border-radius: 50px;
  width: 400px;
  line-height: 1.5;
}

.submit-topic {
  font-size: 16px;
  padding: 14px;
  width: 150px;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  background-color: palevioletred;
  color: white;
  margin-left: 10px;
  transition: 200ms ease-in-out;
}
.submit-topic:hover {
  background-color: pink;
}

.poem-result {
  background-color: white;
  line-height: 2;
  border-radius: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 30px;
  text-align: center;
  box-sizing: border-box;
  border-left: 5px solid palevioletred;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}
.hidden {
  display: none;
}

.poem-result strong {
  color: pink;
  font-style: italic;
}

footer {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
}

a {
  font-style: italic;
  color: black;
}