.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero {
    max-width: 100%;
    max-height: 75vh;
}

.flavor_text {
    text-align: center;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: gray;
    font-size: 1.25em;
}

.topnav {
    background-color: #fff;
    overflow: hidden;
    text-align: center;
    font-family: American Typewriter;
}

.topnav a {
    display: inline-block;
    text-align: center;
    padding: 14px 6.7%;
    text-decoration: none;
    font-size: 2em;
}

.topnav a:hover {
    color: blue;
}

.topnav a.active {
    color: black;
    font-size: 2em;
    font-weight: bold;
}

.pagename {
    text-align: center;
    font-family: Bodoni MT, Didot;
}

.divider {
    color: #FFD700;
}

ul {
    list-style-type: none;
}

/* Mobile view gets larger text */
@media only screen and (max-width: 1024px) {
    .flavor_text {
        font-size: 2.5em;
    }

    .topnav a {
        font-size: 3em;
    }

    .topnav a.active {
        font-size: 3.5em;
    }
    
    .pagename {
        font-size: 2.5em;
    }
}
