body {
    margin: 0;
    background: black;
    color: white;
    text-align: center;
}

.menu_image {
  display: block;
  width: 70vw;
  height: auto;
  margin: 0 auto;
}

#hbar {
    display: block;
    width: 80%;
    margin: 10px auto;
    border-bottom: 1px solid white;
}

h1 {
    margin: 20px 0;
}

h2 {
    margin: 10px 0;
}

/* header and footer elements */
.header p, .footer p {
    margin: 0;
    padding: 10px;
}

.footer {
	margin-bottom: 100px;
}

/* title aka the logo and slogan */
.title {
    padding: 10px;
    background: url("/images/pizza_background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.title img {
    width: 100%;
}

.title h1 {
    text-shadow: -1px -1px 5px black, 7px 7px 2px black;
}

/* menu list */
.menu_sep {
    display: block;
    width: 60%;
    margin: 10px auto;
    border-bottom: 3px solid white;
}

.menu a:after {
    content: "Click here";
    color: white;
}

.menu img {
    display: none;
}

/* Mailing list form */
.sub {
  display: block;
  margin: auto;
  width: 70%;
}
.sub input,
.sub button {
  display: block;
  width: 100%;
  margin: 5px;
  padding: 5px 15px;
  outline: none;
  background: black;
  color: white;
  border: 1px solid #AAA;
  border-radius: 3px;
}

.sub input:focus,
.sub input:hover,
.sub button:hover {
  border: 1px solid white;
}

.sub button {
  background: #6080FF;
  cursor: pointer;
}

/* list of photos */
.photos {
    display: flex;
    flex-wrap: wrap;
    vertical-align: center;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
}

.photos img {
    width: calc(50% - 20px);
    margin: 10px;
}

/* open mic night */
.openmic {
    color: #c46210;
}

.openmic img {
    display: inline-block;
    width: calc(100% - 40px);
    max-width: 700px;
    max-height: 525px;
    margin: 0 auto;
    padding: 10px;
}

/* location, hours, phone# */
.location p {
    margin: 0 0 20px 0;
}

/* simple about us */
.about {
    padding: 10px;
}

/* grubhub icon */
.grubhub {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background: black;
    border: 1px solid white;
}

.grubhub a {
    color: white;
    text-decoration: none;
}

.grubhub p {
    margin: 0;
}

.grubhub .large {
    display: none;
}

/* responsive stuff */
@media (min-width: 650px) {
    /* title aka the logo and slogan */
    .title {
        background-size: 100% auto;
    }

    .title img {
        width: 600px;
    }

    /* menu list */
    .menu_sep {
        display: none;
    }

    .menu div {
        display: inline-block;
        vertical-align: top;
        width: 32.9%;
    }

    .menu a:after {
        content: "";
    }

    .menu img {
        display: inline-block;
        width: 70%;
    }

    /* simple about us */
    .about {
        padding: 0;
    }

    .about div {
        width: 600px;
        margin: auto;
    }

    /* grub hub */
    .grubhub .phone {
        display: none;
    }

    .grubhub .large {
        display: block;
    }
}

@media (min-width: 730px) {
    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 2em;
    }
}

@media (min-width: 800px) {
    /* menu list */
    .menu {
        max-width: 2000px;
        max-height: 500px;
        overflow: hidden;
        margin: 0 auto;
        mask-image: linear-gradient(180deg, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    }

    /* mailing list */
    .sub {
      width: unset;
      margin: 0;
    }
    .sub input,
    .sub button {
      display: inline;
      width: unset;
    }

    /* list of photos */
    .photos img {
        width: calc(33% - 20px);
        margin: 0;
        padding: 10px;
    }
}

@media (min-width: 1100px) {
    .header p, .footer p {
        display: inline-block;
        margin: 10px 20px;
        padding: 0;
    }

    .title img {
        width: 1000px;
    }

    /* menu list */
    .menu {
        max-height: 800px;
    }
}

@media (min-width: 2000px) {
    p {
        font-size: 1.4em;
    }

    input,
    button {
      font-size: 1.3em;
    }
}
