.row {
  margin-top: 20px;
}

.normalSection {
  padding-top: 30px;
  padding-bottom: 30px;
}

.foodBox {
  padding: 10px;
}

.foodBox .imgContainer {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: black;
}



.foodBox img {
  max-width: 100%;
  transition-duration: 300ms;
  border-radius: 5px;
}

.foodBox img:hover {
  transform: scale(1.1) rotateZ(2deg);
  opacity: 0.8;
}

.foodBox h1 {
  text-align: center;
  margin-top: 15px;
  font-size: 20px;
  font-family: helvetica-bold;
}

.foodBox h2 {
  position: absolute;
  z-index: 1;
  color: white;
  font-size: 30px;
  font-weight: 400;

  margin-left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 300ms;
  opacity: 0;

}

.foodbox h2:hover ~ .imgContainer img {
  transform: scale(1.1) rotateZ(2deg);
  opacity: 0.8;
}

.imgContainer:hover > * {
  opacity: 1;
}

.foodBox p {
  margin-top: 0px;
  font-size: 16px;
  color: #333333;
  text-align: justify;
  font-family: helvetica-light;
}

#footer {
  clear: both;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0px;
  text-align: center;
  background-color: #333333;
  color: white;
  font-family: helvetica-light;
}

@media only screen and (max-width: 995px) {

  #footer {
    margin-top: 0px;
  }
}
