body {
  background-color: #f8e2d1;
}

a {
  color: #b75d4d;
}

h1 {
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  color: #04092e;
  line-height: 1.2;
}
form {
  padding: 20px;
  background-color: #f0f0f0;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
}

header {
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.container {
  margin: 120px auto;
  max-width: 600px;
}

button {
  font-size: 12px;
  background-color: #4e3b3b;
  color: #f9f5f6;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
}

#themeInput {
  background-color: white;
  border: 1px solid #f0f0f0;
  color: #04092e;
  font-size: 12px;
  padding: 15px;
  width: 65%;
  border-radius: 50px;
  line-height: 20px;
}

button:hover {
  opacity: 0.9;
  background-color: #1d1f49;
}
.poem {
  font-size: 18px;
  line-height: 1.5;
  color: #7a4a2a;
  background-color: #f0f0f0;
  padding: 20px;
  border-left: 3px solid #04092e;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
  border-radius: 10px;
}
hidden {
    display: none;
}

.generated-poem {
  animation: blink_smooth 2s infinite;
}
@keyframes blink_smooth {
  to {
    visibility: hidden;
  }
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
  color: #04092e;
}

strong {
  color: #7a4a2a;
}
