nav {
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8); /* 0.5 = 50% durchsichtig */
  color: #fcd07e; 
  filter: drop-shadow(0 0 15px purple);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
}


.navlink a {
  background-color: #0000;
  display: inline-block;
  width: 100px;
  padding: 8px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  color: #fcd07e;
  text-shadow: 0 0 8px #fcd07e, 0 0 15px #680185;
  transition: all 0.3s ease;
}

.navlink a:hover {
  text-shadow: 0 0 4px #fcd07e, 0 0 8px #680185;
  background-image: url('https://files.catbox.moe/fyagcp.gif');
}

#topbar {
  min-height: 50px;
}

