*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 100%;
    line-height: 1.3;                   
}

header {
    display: flex;
    align-items: center;
}

header h2 {
    font-size: 300%;
    font-style: italic;
    color: steelblue;
    text-shadow: 2px 2px 15px gray;
}

a:link, a:visited {
    color: steelblue;
}
a:hover, a:active {
    color: maroon;
}
aside a {
    font-weight: bold;
}

aside a:visited {
    color: maroon;
}

h4 {
    font-weight: normal;
}

/* Hide Moble





/******************************************************
*******************************************************
Media Queries
*******************************************************
******************************************************/
@media only screen and (max-width: 933px){
    body {
      box-shadow: none;
       font: 90%;
    }
    main {
       flex-wrap: wrap;
       align-items: center;
    }
    #left {
        order: 1;
        flex: 0 1 90%;
    }
    section {
        flex: 0 1 70%;
    }


}
@media only screen and (max-width: 767px) {
    #nav_menu {
        display: none;
    }

}
 
