body {
  background-color: antiquewhite;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

a {
  color: darksalmon;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: burlywood;
}
header {
  margin-bottom: 30px;
}
.container {
  margin: 120px auto;
  max-width: 600px;
}
.poem {
  font-size: 16px;
  background-color: burlywood;
  padding: 20px;
  line-height: 1.5;
  box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.03);
  border-radius: 10px;
}

.poem strong {
  color: darkred;
}

.hidden {
  display: none;
}
.form-container {
  background-color: darksalmon;
  border-radius: 50px;
  margin-bottom: 30px;
  padding: 15px 20px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

form {
  display: flex;
}

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

.instructions {
  padding: 10px;
  border: 1px solid coral;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: darkred;
}

.waiting {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.button-submit {
  margin-left: 12px;
  background-color: bisque;
  color: darksalmon;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 24px 24px;
}

footer {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}
