body {
  background: wheat;
  font-family: Arial, Helvetica, sans-serif;
}
.container {
  max-width: 700px;
  margin: 120px auto;
}
h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 1.5;
  color: rgb(44, 33, 41);
  text-align: center;
}
.form-container {
  background: white;
  margin-bottom: 30px;
  box-shadow: 1px;
  padding: 30px;
  border-radius: 10px;
}
form {
  display: flex;
}
.hint {
  line-height: 1.5;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.6;
}

.intrustions {
  padding: 16px;
  border: 1px solid #ddd;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 10px;
  color: blueviolet;
}
.submit-button {
  background: blueviolet;
  color: white;
  border: 0;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 20px;
}
.poem {
  background: #f4f4f4;
  padding: 30px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  border-left: 3px solid blueviolet;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.hidden {
  display: none;
}
.blick {
  animation: blinker 3s step-end infinite;
}
@keyframes blinker {
  0% {
    visibility: hidden;
  }
  10% {
    visibility: visible;
  }
}
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
