#navbar {
    display: flex;
    box-shadow: 0px 0px 5px 0px #dddddd;
    padding: 2vh 10vw;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.2em;
}

#navbar * {
    align-items:center
}

#navbar a {
    text-decoration: none;
    color: inherit;
}

#navigator {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-weight: 300;
    margin-left: 10px;
}

#navigator * {
    margin-left: 1em;
}

#navbar-name {
    display: flex;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.3em;
    font-weight: 800;
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    #navbar {
        flex-direction: column;
    }

    #navigator {
        margin-left: 0px;
        justify-content: flex-start;
    }

    #navigator * {
        margin-left: 0px;
        margin-right: 1em;
    }
}