body {
  background-image: url("https://images.pexels.com/photos/1520372/pexels-photo-1520372.jpeg");
  background-size: cover;
  font-family: "Truculenta", sans-serif;
}

a {
  color: #e96544;
}

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

header {
  margin-bottom: 30px;
}

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

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

.example {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 14px;
}

form {
  display: flex;
}

.topic {
  padding: 16px;
  border: 1px solid;
  width: 80%;
  font-size: 16px;
  line-height: 20px;
  border-color: #e96544;
  border-radius: 10px;
}

.submit-button {
  margin-left: 10px;
  background-color: #e96544;
  color: #f8f2ee;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
}

.story {
  font-size: 18px;
  background-color: #f8f2ee;
  line-height: 1.5;
  padding: 20px;
  border-left: 3px solid #e96544;
  border-radius: 10px;
}

.hidden {
  display: none;
}

footer {
  margin-top: 30px;
  padding: 5px;
  text-align: center;
  font-size: 13px;
  color: black;
  background-color: #f8f2ee;
  border-radius: 5px;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.blink {
  animation: blink 1s step-start 0s infinite;
}
