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

#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;
}

/* title aka the logo and slogan */
.title {
    padding: 10px;
    background: url("https://cdn.commercialsigns.biz/images/pizza1.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;
}

/* 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 {
    width: 100%;
    max-height: 400px;
    margin: 20px 0;
}

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

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

/* 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;
    }
}

@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%);
    }

    /* 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;
    }
}
