body {
  margin: 0;
  padding: 2em;
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Courier New', monospace;
  background-image: url('aria_bg.jpg');
  background-size: cover;
  background-position: center;
}

.journal {
  max-width: 600px;
  margin: auto;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.8);
  border-left: 4px solid crimson;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2em;
  color: crimson;
  text-align: center;
}

.entry {
  white-space: pre-line;
  line-height: 1.6;
  font-size: 1rem;
}

.footer {
  margin-top: 2em;
  text-align: right;
  font-style: italic;
  color: #888;
}

#journal-text {
  white-space: pre-line;
  line-height: 1.6;
  font-size: 1rem;
  border-right: 2px solid crimson;
  animation: blink-caret 0.8s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}