/* Import a gothic-style font */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

body {
  background-color: #0d0000;
  background-image: radial-gradient(circle at center, #200000 0%, #0d0000 70%);
  color: #e6cccc;
  font-family: 'Cinzel', serif;
  margin: 0;
  padding: 0;
}

/* Main container */
.container {
  max-width: 750px;
  margin: 80px auto;
  padding: 40px;
  background-color: #1a0000;
  border: 1px solid #660000;
  box-shadow: 0 0 40px #400000;
}

/* Main title */
h1 {
  text-align: center;
  font-size: 3em;
  color: #cc0000;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #990000;
}

/* Section titles */
h2 {
  color: #b30000;
  border-bottom: 1px solid #400000;
  padding-bottom: 5px;
  margin-top: 40px;
}

/* Paragraphs */
p {
  line-height: 1.6;
}

/* Links */
a {
  color: #ff3333;
  text-decoration: none;
}

a:hover {
  color: white;
  text-shadow: 0 0 8px red;
}

/* Lists */
ul {
  list-style-type: square;
}

/* Horizontal line */
hr {
  border: 1px solid #330000;
  margin: 30px 0;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #660000;
}



}