* {
  box-sizing: border-box;
}

.fourrow {
    display: flex;
    flex-wrap: wrap;
}

.fourcolumn {
  flex: 25%;
  padding: 20px;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 992px) {
  .fourcolumn {
    flex: 50%;
  }
}

@media screen and (max-width: 600px) {
  .fourrow {
    flex-direction: column;
  }
}

.menuheader {
    font-family: "Roboto Condensed";
    color: #029FCC;
    font-size: 26px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
}

.menuprice {
    font-family: "Roboto Condensed";
    color: #5D4E46;
    font-size: 24px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-align: center;
}

.photo1,.photo2, .photo3 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo1 {
  margin-top: 100px;
  background-image: url('/img/oatmeal.png');
  min-height: 280px;
}

.photo2 {
  background-image: url("/img/chocchipmuffins.png");
  min-height: 250px;
}

.photo3 {
  background-image: url("/img/pbcookies.png");
  min-height: 250px;
}

  .gif {
    max-width: 100%;
    height: auto;
  }

@media only screen and (max-device-width: 600px) {
  .photo1, .photo2 {
    background-attachment: scroll;
    min-height: 400px;
  }
}