body {
  background-color: #ffbdd2;
}
.container {
  background-color: #b92a5e;
  border-radius: 10px;
  border-color: #b92a5e;
  max-width: 600px;
  display: block;
  margin: 120px auto;
  font-family: fantasy;
  padding-top: 10px;
  padding-bottom: 12px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}
h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: whitesmoke;
}
form {
  display: flex;
  justify-content: center;
}
.theme-input {
  padding: 16px;
  border: 1px solid gray;
  border-radius: 15px;
  width: 70%;
  margin-right: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}
.submit-button {
  padding: 16px;
  border: 1px solid gray;
  border-radius: 15px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}
.poem {
  text-align: center;
  color: whitesmoke;
  line-height: 30px;
}
footer {
  text-align: center;
  color: whitesmoke;
  font-size: small;
}
a {
  color: black;
}

.dots::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60% {
    content: "...";
  }
  80%,
  100% {
    content: "";
  }
}

.loading-text {
  font-style: italic;
  opacity: 0.8;
}
