
a:link, a:visited{
    color:#d2d3d4;
    text-decoration:none;
}

a:hover, a:active{
    color:#ce8ff5;
    text-decoration:none;
}
/* CSS Resets */
h1, h2, h3, h4, h5, h6{
    font-family: "EB Garamond", serif;
    font-weight: 600;
    color:#ce8ff5;
}

h1, h2, h3, h4, p, nav ul {
    padding: 0;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
img { max-width: 100%; display: block; }
* { box-sizing: border-box;}

/* end Resets */

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #d2d3d4;
    padding: 0 20px;
    background-image: url("images/customGudePattern.png"); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    /*#d2d3d4*/
}

header, footer {
    background-color: #59535E;
    padding: 20px;
    text-align: center;
}

header img{
    display: inline-block;
}

main {
    padding-top: 20px;
    padding-left: 20px;
}

.container {
    max-width: 1500px;
    background-color:#20272b;
}

h1, h2 {
    margin-bottom: .5em;
}

p {
    line-height: 1.4em;
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    font-weight: bold;
    color:cornflowerblue;
}

ul li {
    margin-bottom: 1em;
}

img {
    margin-bottom: 20px;
}

aside {
    background-color: #161318;
    padding: 20px;
}

aside img {
    border-radius: 85%;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
}

@media only screen and (min-width: 600px) {
    .container{ 
        display: flex;
        flex-wrap: wrap;
    }
    header, footer {
        width: 100%;
    }
    main { flex: 2; }
    aside { flex: 1; }
}

@media only screen and (min-width: 800px) {
    .container{ margin: auto; }
    main { display: flex;}
    main div { flex: 1; }
}