body {
  font-family: 'Georgia', serif;
  background: url('images/barovia.png') no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  border-bottom: 2px solid #e63946;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e63946;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #e63946;
  text-shadow: 0 0 10px #000;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.5;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #e63946;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #c5303a;
  transform: scale(1.05);
}
