@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=Cinzel&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cinzel', serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.7;
  padding: 20px;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #1e1e1e;
  padding: 30px;
  border: 2px solid #444;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* HEADER */
header h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  color: #a30000;
  text-shadow: 2px 2px 8px black;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px;
  background-color: #222;
  border-radius: 6px;
}

nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  border: 1px solid #a30000;
  color: #a30000;
  background-color: #111;
}

/* ARTICLE */
article {
  margin-top: 20px;
}

article img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 3px solid #444;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  color: #999;
  font-size: 0.85rem;
  border-top: 1px solid #333;
}
