body {
  background-color: rgb(195, 125, 135);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.container {
  margin: 120px auto;
  max-width: 700px;
  background-color: rgb(234, 167, 177);
  border-radius: 20px;
  box-shadow: 0px 10px 30px;
}

header {
  margin-bottom: 30px;
}

h1 {
  margin-top: 10px;
  text-align: center;
  font-weight: 800;
  font-size: 35px;
  line-height: 1.5;
}
.form-container {
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 15px;
  background-color: rgb(234, 167, 177);
  border-radius: 10px;
  display: flex;
  margin-bottom: 30px;
}

form {
  display: flex;
}

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

.instructions {
  margin-left: 30px;
  padding: 16px;
  border: 1px solid rgb(195, 125, 135);
  width: 80%;
  border-radius: 50px;
  font-size: 16px;
  line-height: 20px;
  color: rgb(195, 125, 135);
  background-color: rgb(246, 224, 233);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.submit-button {
  margin-left: 10px;
  margin-right: 30px;
  background-color: rgb(246, 224, 233);
  color: rgb(195, 125, 135);
  width: 150px;
  font-size: 16px;
  padding: 14px 15px;
  border-radius: 50px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.quote {
  font-size: 14px;
  background-color: rgb(234, 167, 177);
  line-height: 1.5;
  padding: 20px;
  border-left: 3px solid #e74e4e;
  box-shadow: 0px, 20px, 60px, rgba(59, 29, 32, 0.08);
}

.hidden {
  display: none;
}

.quote strong {
  color: rgb(194, 78, 78);
}
footer {
  text-align: center;
  font-size: 13px;
  margin-top: 50px;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: rgb(194, 78, 78);
}

.generating::after {
  content: "";
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
