/* Make some place for the burger */

header {
    width: 100%;
    padding: 0;
}

header em {
    display: none;
}

.burger {
    display: flex;
}

section {
    flex-direction: column;
}

nav {
    width: 100%;
}

nav h3 {
    display: none;
}

nav .menu {
    justify-content: center;
}

nav .menu a .title {
    margin-bottom: 4px;
    max-height: 9pt;
    display: block;
}

nav a.article-link {
    width: 100%;
}

nav .about, nav .quicklinks {
    margin: 0 0 10px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

nav .quicklinks {
    margin: 0;
    justify-content: center;
}

nav.hidden {
    max-height: 0;
    overflow: hidden;
}
