.menu-btn {
  position: fixed;
  top: 5px;
  left: 30px;
  z-index: 10;
  width: 120px;
  cursor: pointer;
  margin: 15px;
}

/* Menü Container */
.menu {
  position: fixed;
  top: 0;
  z-index: 8;
  text-align: right;
  left: -350px;
  width: 290px;
  height: 100%;
  background-image: url("/TheBusfan/Bilder/menps.png");
  background-color: #0c0c0c;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px;
  transition: 0.3s;
}

.menu.open {
  left: 0;
}

.menu input {
  width: 90%;
  padding: 10px;
  margin-top: 90px;
  margin-bottom: 25px;
  border: none;
  border-radius: 2px;
}

/* Menü Links */
.menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-size: 18px;
}

.menu a:hover {
  background: #333;
}