body {
  background-color: #eaf6f6;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

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

header {
  margin-bottom: 30px;
}

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

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

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  font-size: 12px;
  margin: 10px 0 0;
  opacity: 0.6;
}

.instructions {
  padding: 16px 24px;
  border: 1px solid #66bfbf;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
}

.instructions::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.instructions:focus-visible {
  outline: 2px solid #66bfbf;
}

.submit-button {
  margin-left: 10px;
  background-color: #66bfbf;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 16px;
}

.poem {
  font-size: 16px;
  background-color: white;
  padding: 24px;
  line-height: 2;
  border-left: 3px solid #66bfbf;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

.hidden {
  display: none !important;
}

.loader {
  margin: 0 auto;
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #66bfbf;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

footer {
  bottom: 0;
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
}

a {
  color: #048b8b;
}
