#menu-bar {
  display: flex;
  position: relative;
  align-content: center;
  justify-content: center;
}

#menu-bar picture {
  object-fit: cover;
  width: 100%;
  max-height: 300px;
  min-height: 150px;
  padding: 0;
  margin: 0;
}

#menu-bar picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu-bar ul {
  display: flex;
  position: absolute;
  bottom: 10%;
  list-style: none;
}

#menu-bar h1 {
  position: absolute;
  bottom: 30%;
  list-style: none;
  color: white;
}

#menu-bar ul li a {
  font-size: larger;
  color: rgb(255, 255, 255);
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: rgb(215, 215, 215);
  ;
  font-style: unset;
  font-style: bold;
  border: rgb(0, 0, 0);
  text-shadow: 2px 2px 8px #4d4d4d;
}

#menu-bar ul li {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

@media only screen and (max-width: 600px) {
  #menu-bar ul li a {
    font-size: 0.8em;
  }
  #menu-bar ul li {
    padding: 1.5vw;
  }
  #menu-bar h1 {
    font-size: 1.5em;
    position: absolute;
    list-style: none;
    color: white;
  }
}