body {
  background-image: url("wall-back-2.jpg");
  display: grid;
  justify-items: center;
  margin: 0px;
}

.bar img {
  width: 100svw;
  position: fixed;
  bottom: -5px;
  right: 0;
  left: 0;
  z-index: 1;
}

h1, h2 {
  text-align: center;
  font-family: Serif;
  color: Black;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  justify-items: stretch;
  width: 90vw;
}

.menu-titles {
  grid-column: auto / span 12;
  border-bottom: solid Black 1px;
  margin: 0px 40px 0px 40px;
}

.menu-items {
  grid-column: auto / span 2;
  margin: 10px;
}
  
.menu-items img:hover {
  scale: 1.1;
  transition-duration: 0.7s;
}

.menu-items img {
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .menu-items {
    grid-column: auto / span 6;
  }
}