body {
  margin: 0;
  background-color: #121212;
  color: white;
  font-family: Arial, sans-serif;
}

/* Style the logo bar */
.logo-bar {
  background-color: #000;
  padding: 20px;
  text-align: center;
}

/* Resize logo image */
.logo {
  height: 60px;
}

.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  padding: 15px 0;
  gap: 30px;
}

.nav-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-bar a:hover {
  color: #ff4c4c;
}
