/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&family=Fira+Code&display=swap');

body {
  background-color: #1a1a1a;
  color: #e0dcd3;
  font-family: 'Crimson Text', serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-image: url('https://i.postimg.cc/Px1vVc5X/1a5c5dd9fee86ad6e6a3c8e7b7bf3871.jpg'); /* swap this with your own */
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
}

.container {
  background-color: rgba(20, 20, 20, 0.8);
  padding: 2rem;
  margin: 4rem auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.subtitle {
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #c0b38d;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin-bottom: 2rem;
}

nav a {
  color: #c0b38d;
  text-decoration: none;
  font-family: 'Fira Code', monospace;
  transition: 0.3s;
}

nav a:hover {
  color: #f2e9de;
  text-shadow: 0 0 5px #c0b38d;
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #7a7460;
}
