body {
  background-color: black;
  background-image: url('/media/glitch.PNG');
  background-repeat: repeat;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 2px 2px 2px black;
  text-align: center;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: white;
}

a {
  color: red;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style-position: inside;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

ol {
  list-style-type: decimal;
}

ul {
  list-style-type: disc;
}

/* Markdown content styling */
.prose {
  text-align: left;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.prose em {
  color: #d1d5db;
  font-size: 0.875rem;
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

.prose ol {
  list-style-position: inside;
  list-style-type: decimal;
  text-align: left;
  margin: 1rem 0;
  padding-left: 0;
}

.prose ol li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .prose ol li {
    font-size: 1rem;
  }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
