
body {
    text-align: center;
    font-size: 1.5em;
    color: #382309; 
    background-color: #a97c48;
}
footer {
    padding-bottom: 1em;
}
a {
    color: black;
}
hr {
    max-width: 50%;
    border-color: #382309;
}
li hr {
    border-style: dashed;
}


/* ID definitions */
#banner {
    padding: 1em;
    max-height: 80vh;
    max-width: 80vw;
    width: auto;
}

#menu {
    display: block; 
    margin: auto; 
    width: 50%;
}
#menu li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#menu hr {
    width: 50%;
    max-height: 0px;
    align-items: baseline;
    margin: auto;
}
@media screen and (width <= 700px) { /* for small screens */
    #menu {
        width: 85%;
    }
}

#hours {
    display: table;
    table-layout: fixed;
    width: 50%;
    margin: auto;
}
#hours .day {
    text-align: right;
    padding: 0px 0.5em;
}
#hours .time {
    text-align: left;
    padding: 0px 0.5em;
}
@media screen and (width <= 700px) {
    #hours {
        width: 100%;
    }
}


/* Class definitions */
.left-align {
    text-align: left;
}

img .center{
    display: block;
    margin: auto;
}

.small-image {
    width: 20%;
    padding: 1em;
}
@media screen and (width <= 700px) { /* for small screens */
    .small-image {
        width: 50%;
    }
}

.subtitle { /* make text small and remove space around it */
    font-size: 0.7em;
    margin: 0px;
    padding: 0px;
}

.no-bottom { /* remove space below an element */
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.lots-of-text { /* to make paragraphs look pretty */
    display: block;
    margin: auto;
    text-indent: 1em;
    text-align: left;
    text-justify: auto;
    width: 50%;
}
@media screen and (width <= 700px) { /* for small screens */
    .lots-of-text {
        width: 85%;
    }
}

.gallery {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 1em;
    justify-content: center;
}

div > img {
    max-height: 50vh;
    max-width: 70vw;
    object-fit: contain;
    padding: 2vw;
}