/*  TODO fix responsiveness of the design.
 *  Menu needs to collapse, content has to stay in the screen
 *  some stuff has to be adapted (see hidden/moved) for different viewports.
 */

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

#Nav
{
    text-align: center;
}

#Nav ul
{
    display: block;
}

#Nav li
{
    display: inline-block;
    padding: 0;
    border-bottom: 1px solid white;
    transition: all 0.5s ease-out;
}

#Nav a
{
    display: block;
    padding: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

#Nav li.active
{
    border-bottom: 1px solid deepskyblue;
}

#Nav li:hover
{
    border-bottom: 1px solid mediumpurple;
}

#MobileNav a{
    font-size: 1rem !important;
    height: 44px !important;
    line-height: 44px !important;
}

#MobileNav li{
    height: 44px !important;
    line-height: 44px !important;
}

.mobileNavHeader{
    background-color : #039be5;
}

.postCategory
{
    padding: 0.3rem;
}

h4 a
{
    color: black;
}

.big-margin
{
    margin-bottom:3em !important;
    margin-top: 3em !important;
}

.mid-margin
{
    margin-bottom:1em !important;
    margin-top: 1em !important;
}

.big-padding
{
    padding-left : 5em !important;
    padding-right : 5em !important;
}

.mid-padding
{
    padding : 3em !important;
}

.nopadding
{
    padding-left:0 !important;
    padding-right: 0 !important;
}

.nomargin
{
    margin: 0 !important;
}

.justify
{
    text-align: justify;
}

#SideNav
{
    position: fixed;
    width: 15em;
}

.sideNavItem
{
    display: block;
    width: 100%;
    margin: 0.5em;
    margin-left:1.5em;
}

#SideNav .btn
{
    width:100%;
    margin-bottom: 0.5em;
}

