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

html {
    background-color: lightsteelblue;
}

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;
    max-width: 1200px;
    margin: 0 auto;
    border: 3px solid steelblue;
    box-shadow: 3px 3px 12px 12px gray;
    background-color: white;
}
header {
    border-bottom: 3px solid steelblue;
    background-image: linear-gradient(to left, steelblue, white);
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
}
header img {
    padding: 1.5em;
}
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;
}

/***************************************************
****************************************************
Nav Menu
****************************************************
***************************************************/
#nav_menu {
    border-bottom: 3px solid steelblue;
    background-color: steelblue;
}
#nav_menu ul {
    list-style-type: none;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
}
#nav_menu li {
    width: 20%;
}
#nav_menu a {
    display: block;
    color: white;
    background-color: steelblue;
    text-align: center;
    padding: .7em 0;
    font-weight: bold;
    text-decoration: none;
    transition: all ease-in-out 600ms;
}
#nav_menu ul ul {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;

}
#nav_menu ul ul li a {
    text-align: left;
    padding-left: .25em;
}
#nav_menu ul li:hover > ul {
    display: block;
}
#nav_menu a:hover {
    color: black;
    background-color: lightsteelblue;
}



/****************************************************
*****************************************************
Nav List
*****************************************************
****************************************************/
#nav_list {
    margin-bottom: 20px;
}
#nav_list h2 {
    margin: 25px 0;
    text-align: center;
}
#nav_list ul {
    list-style-type: none;
}
#nav_list li {
    width: 90%;
    border: 1px solid steelblue;
    border-radius: 50px;
}
#nav_list a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    background-color: lightsteelblue;
    padding: .5em;
    color: black;
    border-radius: 50px;
    transition: all 600ms;
}
#nav_list a:hover {
    background-color: steelblue;
    color: white;
}

.sidebarimages img {
    max-width: 90%;
    border: 3px ridge steelblue;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 2px gray;
}

h1 {
    text-align: center;
    font-size: 300%;
    color: lightsteelblue;
    text-shadow: 1px 1px 2px black, -1px -1px 2px black, -1px 1px 2px black, 1px -1px 2px black;
}

main {
    display: grid;
    grid-template-areas: 
    'aside1 section section section aside2'
    'footer footer footer footer footer';
    gap: 10px;
}

#left {
    grid-area: aside1;
    padding-left: 1em;
}

#left h2 {
    padding-right: 1em;
}

section {
    grid-area: section;
}

section h1 {
    padding-right: .5em;
    padding-left: .5em;
}

#right {
    grid-area: aside2;
    padding-right: 1em;
}

#right h2 {
    padding-right: 1em;
}

section p {
    margin: 0 3% 20px;
}

blockquote {
    margin: 0 15% 20px;
    border-left: 8px solid steelblue;
    background-color: rgb(201, 220, 244);
    padding: 7px;
    border-radius: 0 50vh 50vh 0;
}
section h2, section h4 {
    margin: 0 0 20px;
}

section h4 a {
    text-decoration: none;
    font-size: 130%;
    
}
section h4 a:link, section h4 a:visited {
    color: black;
    transition: color 600ms;
}
section h4 a:hover {
    color: chocolate;
}



/* Image Swap */
/* .imageswap {
    width: 262px;
    height: 348px;
    border: 3px ridge blue;
    border-radius: 7px;
    background-image: url(../images/w1.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 600ms;
    margin: 25px auto;
}
.imageswap:hover {
    background-image: url(../images/w2.png);
    border-color: red;
} */



/**************************************************************
***************************************************************
Aside Right
***************************************************************
**************************************************************/
#right h2 {
    font-size: 100%;
    text-align: center;
    margin: 25px 0;
}
#right h3 {
    font-size: 120%;
}
#right p {
    font-size: 90%;
    margin: 15px 0 25px;
    padding-right: 10px;
}

footer {
    background-color: steelblue;
    color: white;
    margin-top: 20px;
    grid-area: footer;
}
footer p {
    padding: 20px 0;
    font-variant: small-caps;
}

/* Hide Mobile Menu */
#mobilemenu {
    display: none;
}


/**********************************************************
***********************************************************
Media Queries
***********************************************************
**********************************************************/
@media only screen and (max-width: 933px){
    body {
        box-shadow: none;
        font-size: 90%;
        margin: 0 auto;
    }
    main {
        margin: 0 auto;
    }
}
@media only screen and (max-width: 767px) {
    
    #nav_menu {
        display: none;
    }
    #mobilemenu {
        display: block;
    }
    .slicknav_menu {
        background-color: steelblue;
    }
    #mobilemenu a {
        color: white;
    }
    h1 {
        font-size: 200%;
    }
    header {
        grid-template-columns: auto;
        justify-content: center;
    }
    main {
        grid-template-areas: 
        'section'
        'aside2'
        'aside1'
        'footer';
        align-items: center;
    }
}