body {
  background-color: #53a8b6;
  font-family: "Playfair Display", serif;
}

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

header {
  margin-bottom: 30px;
}

form {
  display: flex;
}

footer {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  margin-top: 30px;
}

a {
  color: white;
}
.topic {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-weight: 400;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: black;
}

.submit-button {
  margin-left: 10px;
  background: #5585b5;
  color: black;
  width: 150px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  cursor: pointer;
}

.poem {
  font-size: 18px;
  background-color: #bbe4e9;
  padding: 20px;
  line-height: 2;
  border-radius: 10px;
  border-width: 3px solid #5585b5;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}

.poem strong {
  color: #5585b5;
}

.hidden {
  display: none;
}
.container {
  margin: 120px auto;
  max-width: 600px;
  background-color: #79c2d0;
  border-radius: 10px;
}
.form-container {
  padding: 15px 20px;
  background-color: #bbe4e9;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;

  margin-bottom: 30px;
}
.hint {
  line-height: 1.5;
  opacity: 0.6;
  margin-top: 5px;
  font-size: 12px;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
}
