body {
  margin: 0;
  font-family: Georgia, serif;
  background-image: url(/img/bg.gif);
  background-attachment: fixed;
  background-repeat: repeat;
  color: #e8e6e3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  opacity: 0.7;
  margin-bottom: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

nav li {
  display: inline-block;
}

nav a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

nav a img {
  width: 40px;
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

nav a:hover img {
  opacity: 1;
}
