
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
color: #000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  background-color: black;
  height: 60px;
  border: 2px solid white;
}

.nav-links,
.nav-user {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
}

.logout-button {
  background: none;
  border: none;
  color: white;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.logout-button:hover {
  color: #000;
}

.logo img {
  max-height: 50px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.footer {
  background-color: black;
  color: white;
  text-align: center;
  margin-top: auto;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 2px solid white;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 1rem 0;
    gap: 1rem;
  }

  .nav-title {
    position: static;
    transform: none;
    order: -1;
    text-align: center;
  }

  .nav-links,
  .nav-user {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}