html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: 'League Spartan', sans-serif;
}

.pageSections{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 100px 0;
}
.pageContainer {
    width: 700px;
    display: flex;
    flex-wrap: nowrap;
}
.container {
    padding: 40px 0;
}
.row {
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: content-box;
}
.cell {
    padding: 0;
}

/* Navigation bar */
.navBar {
    display: flex;
    z-index: 3;
    position: fixed;
    height: 40px;
    width: 100vw;
    background-color: #DCD7BA;
    opacity: 0.90;
}
.empty {
    display: flex;
    flex-basis: 60vw;
    flex-shrink: 3;
    z-index: 3;
}
.navContainer {
    display: flex;
    flex-basis: 40vw;
    flex-shrink: 0;
    z-index: 3;
    align-content: center;
    justify-content: right;
}
.navLinks {
    display: grid;
    z-index: 3;
    grid-template-columns: auto auto auto auto;
    text-align: center;
    align-self: center;
    position: fixed;
    padding: 3px 0 0 0;
}
.navLinks a{
    display: inline-block;
    position: relative;
    z-index: 3;
    margin: 0.25vh 2vw 0.25vh 0;
    padding: 5px 10px;
    font-size: 1.2rem;
    color: #16161D;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}
/* navigation bar hover */
.navLinks a:after {
    content: "";
    display: block;
    position: relative;
    height: 10%;
    left: 50%;
    background: #16161D;
    transition: width 0.1s ease 0s, left 0.1s ease 0s;
    width: 0;
}
.navLinks a:hover:after {
    width: 100%;
    left: 0;
}

/* mobile */
@media (orientation: portrait){
    .emptyNavSpace{
        display: none;
    }
    .burger{
        display: flex;
        flex-direction: column;
        align-self: center;
        align-content: center;
        margin: 15px;
        z-index: 4;
    }
    .burger span{
        width: 26px;
        height: 3px;
        margin-top: 25%;
        border-radius: 3px;
        background: black;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .burger:hover{
        cursor: pointer;
    }

    /* action */
    .navLinks{
        display: flex;
        position: fixed;
        left: 0px;
        top: 0px;
        z-index: 3;
        background: white;
        opacity: 70%;
        justify-content: center;
        align-items: flex-end;
        /*flex: auto;*/
        padding: 0px;
        height: 100%;
        width: 100%;
        flex-direction: column;
        clip-path: inset(0 0 0 100%);
        -webkit-clip-path: inset(0 0 0 100%);
        transition: all .10s ease-in-out;
    }
    .navLinks.open{
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
    .toggle .line1{
        transform: rotate(-45deg) translate(-6px,7px);
        transition: transform 0.2s ease;
    }
    .toggle .line2{
        transform: translateX(-10px);
        opacity: 0;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .toggle .line3{
        transform: rotate(45deg) translate(-6px,-7px);
        transition: transform 0.2s ease;
    }
    .navLinks a{
        font-family: 'League Spartan', sans-serif;
        font-weight: 300;
        font-size: 43px;
        width: 180px;
        text-align: end;
        padding: 0px;
        margin: 10px 30px 5px 0;
    }
    .pageContainer {
        width: 500px;
    }
}
@media (max-width: 700px) {
    .pageContainer {
        width: 400px;
    }
}
