body {
  background-color: #000;
  color: #f00;
  font-family: 'Courier New', monospace;
  text-align: center;
  padding: 40px;
  overflow: hidden;
}

.title {
  font-size: 2em;
  text-shadow: 0 0 20px red;
  animation: flicker 2s infinite;
}

textarea {
  width: 80%;
  height: 150px;
  background: #111;
  color: #0f0;
  border: 2px solid #f00;
  padding: 10px;
  font-family: inherit;
  font-size: 1em;
}

button {
  background: #300;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 1.2em;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #600;
}

.hidden {
  display: none;
}

#storyContainer {
  margin-top: 40px;
}

#storyText {
  width: 80%;
  margin: 0 auto;
  background: rgba(20, 0, 0, 0.8);
  padding: 20px;
  border: 1px solid #f00;
  min-height: 200px;
  font-size: 1.2em;
  line-height: 1.6em;
  color: #eee;
  text-shadow: 0 0 10px red;
  animation: glitch 3s infinite;
}

/* Creepy animations */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.3; }
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red; }
  20% { text-shadow: -2px 0 lime; }
  40% { text-shadow: 2px 2px blue; }
  60% { text-shadow: -1px -1px red; }
  80% { text-shadow: 1px 1px lime; }
  100% { text-shadow: 0 0 10px red; }
}
