
:root {
  --yellow: #febd01;
  --gray: #b2b2b2;
  --dark: #000;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  height: 50px;
}

nav a {
  margin-left: 20px;
  color: var(--gray);
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--yellow);
}

#authStatus {
  margin-left: 20px;
}
