body {
  background-color: #f9f7fe;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
  text-align: center;
  text-decoration: underline;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #272044;
  margin-bottom: 30px;
}

.container {
  margin: 120px auto;
  max-width: 600px;
  border-radius: 10px;
  padding: 30px;
  background-color: rgb(247, 231, 231);
  box-shadow: 5px 10px 15px rgba(39, 33, 66, 0.5);
  box-shadow: 5px 10px 15px rgba(39, 33, 66, 0.5);
}

.form-container {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 5px 10px 15px rgba(39, 33, 66, 0.5);
}

.hint {
  text-align: center;
  margin-top: 5px;
  margin-left: -80px;
  font-size: 12px;
  opacity: 0.8;

  color: rgb(136, 73, 84);
}
form {
  display: flex;
}

.poem-topic {
  padding: 15px;
  border: 1px rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 15px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background: #885df1;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  width: 150px;
  font-size: 15px;
}

.poem {
  font-size: 14px;
  background-color: rgb(247, 231, 231);
  padding: 20px;
  line-height: 24px;
  border-left: 3px solid #885df1;
  border-radius: 4px;
}

.hidden {
  display: none;
}
footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}

a {
  color: #885df1;
}
poem.strong {
  color: #885df1;
}

.hourglass {
  display: block;
  background: #333;
  margin: 3em auto;
  width: 2em;
  height: 4em;
  clip-path: polygon(0% 0%, 100% 0%, 50% 50%, 100% 100%, 0% 100%, 50% 50%);
  animation: turn 2s linear infinite;
}

@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
