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

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

a {
  color: #724060;
}

h1 {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.5;
  text-align: center;
  color: #724060;
}

form {
  padding: 30px;
  background: white;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  border-radius: 12px;
  margin-bottom: 30px;
}
.prompt {
  padding: 10px;
  width: 80%;
  border: 1px solid lightslategray;
  border-radius: 12px;
}
.button {
  padding: 10px;
  border: 1px solid lightslategray;
  border-radius: 12px;
  background: #a070a1;
  color: white;
}

.hints {
  font-size: 11px;
  margin-top: 10px;
  opacity: 70%;
}

.returned-fact {
  font-size: 14px;
  background-color: white;
  padding: 20px;
  line-height: 1.5;
  border-radius: 12px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  margin-bottom: 30px;
}

footer {
  font-size: 13px;
  text-align: center;
}

.hidden {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

.animate-flicker {
  animation: fadeIn 0.5s infinite alternate;
}
