body {
    font-family: "Montserrat", sans-serif;
}

header {
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-flow: column;
}

header h1 {
    text-align: center;
    padding: 0 0 60px 0;
}

header .navigation {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

header img {
    max-width: 200px;
}

header nav {
    display: flex;
    justify-content: space-between;
}

header nav a {
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #b33133;
    text-decoration: none;
    width: 200px;
    display: block;
}

header .gloria-food {
    padding: 20px 0;
    text-align: center;
}

.menu {
    text-align: center;
    padding: 100px 40px 100px;
}

.menu h3 {
    position: relative;
    z-index: 1;
}

.menu img {
    max-width: 100%;
    height: auto;
    /*margin-top: -50px;*/
}

.main h3 {
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */

.location-map {
    height: 500px;
    margin-bottom: 50px;
}

gmp-map {
    height: 100%;
}

.mobile-only {
    display: none;
}

.contact ul {
    list-style: none;
    display: flex;
    flex-flow: column;
    margin: 0;
    padding: 0 20px 20px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}

.contact ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.material-symbols-outlined {
    margin-right: 5px;
}

.contact h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* CSS for mobile devices */
@media only screen and (max-width: 768px) {

    header nav {
        flex-flow: column;
    }

    header nav a {
        padding: 5px;
    }

    .menu {
        padding: 20px;
    }

    .menu img {
        margin-top: 0px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}