/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #290202;
  font-family: 'Georgia', serif;
  color: #f4e7e7;
  line-height: 1.6;
}

header {
  background-color: #730000;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #c93434;
}

.site-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffe5e5;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #ffd6d6;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 30px;
  max-width: 900px;
  margin: auto;
  background-color: #3d0a0a;
  border: 2px solid #a02c2c;
  border-radius: 10px;
}

h1, h2 {
  color: #ffb3b3;
  margin-bottom: 10px;
}

ul {
  margin-left: 20px;
}

footer {
  background-color: #730000;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #ffd6d6;
  border-top: 3px solid #c93434;
  margin-top: 40px;
}
