body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Helvetica, Arial, sans-serif;
}

.full-screen-image {
  width: 100%;
  height: 33%;
  object-fit: cover; /* Ensures the image covers the whole area */
}

a {
  color: #0f65b4;
  text-decoration: none;
}

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

header {
  margin-bottom: 30px;
}

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

.form-container {
  background-color: rgb(255, 218, 150);
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 40px 60px rgba (65, 60, 100, 0.08);
  padding: 15px 20px;
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  text-indent: 3.5%;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.6;
  color: #757070;
}

.instructions {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background-color: #0f65b4;
  color: white;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
}


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

.hidden {
  display: none;
}

.wisdom strong {
  color: #0f65b4;
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  color: #888;
}

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

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