body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.menu-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  z-index: 1000;
}

.menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.menu-bar li {
  margin: 0;
  flex: 1;
  text-align: center;
}

.menu-bar a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  transition: background-color 0.3s, border 0.3s;
  border: 2px solid transparent;   
  text-align: center;
}

.menu-bar a:hover {
  background-color: #384001;
  border: 2px solid #A0A603;
}

.menu-bar a.active {
  background-color: #A0A603;
  color: black;
  font-weight: bold;
  border: 2px solid #384001;
}


/* Menü fixálása a képernyő tetejére */

.menu-bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
}

.menu-bar li {
  position: relative;
}

/* Lap tartalma ne legyen a menü mögött */
body {
  padding-top: 50px;
}

