@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Ruluko&display=swap");

body {
  background: radial-gradient(
    905px at 4.9% 85.8%,
    rgb(255, 243, 242) 0.1%,
    rgb(255, 247, 220) 57.6%
  );
  font-family: "Ruluko", sans-serif;
}

.container {
  margin: 120px auto;
  max-width: 700px;
  border: 3px solid #054640; /* solid dark green border */
  border-radius: 20px; /* rounded corners */
  padding: 30px; /* space inside the container */
}

header {
  margin-bottom: 30px;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  color: #054640;
  text-align: center;
  font-family: "Courgette", cursive;
}

form {
  padding: 30px;
  background-color: #054640;
  border-radius: 20px;
  display: flex;
  box-shadow: 0px 20px 60px rgba(5, 70, 64, 0.08);
}

.instructions {
  padding: 16px;
  border: 1px solid #f6e6e9;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #054640;
  background-color: #f8f3e0;
}

.submit-button {
  margin-left: 10px;
  background-color: #f6e6e9;
  width: 160px;
  font-size: 16px;
  color: #054640;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  cursor: pointer;
}

#quote {
  font-size: 16px;
  background-color: #f6e6e9;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid #054640;
  box-shadow: 0px 4px 30px 0px rgba(5, 70, 64, 0.03);
  margin-top: 20px;
  border-radius: 6px;
}

.hidden {
  display: none;
}

#quote strong {
  color: #054640;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

footer {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  color: #054640;
}

.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
