/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}body {
  margin: 0;
  font-family: 'EB Garamond', serif;
  color: #f0f0f0;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
  background-size: cover;
  overflow-x: hidden;
}

/* Spooky fog animation */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/vwY7J1M/fog-layer.png') repeat;
  opacity: 0.05;
  animation: fogMove 60s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

/* Optional: Bat silhouettes */
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/VCtVkJk/bats.png') no-repeat center;
  background-size: conta
