/* CSS Resets */

h1, h2, h3, h4, p, nav ul {
    padding: 0;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
img { display: block; }
* { box-sizing: border-box;}

/* end Resets */

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    padding: 0 20px;
    background-color: #33658A;
}

.container {
    max-width: 1000px;
    background-color: #E6E6E6;
	border: 2px solid black;
}

header, footer {
	background-color: #174524;
    padding: 20px;
	color: #FFFFFF;
}

p {
    line-height: 1.4em;
    margin-bottom: 1em;
    padding-top: 7px;
    padding-left: 22px;
    font-size: 20px;
	font-family: "Handlee", sans-serif;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: #6E49B8;
	font-family: "Handlee", sans-serif;
}

/*****Header*****/

header{
    border-bottom: 2px solid #000000;
}

header h1{
	font-size: 5.5vw;
    margin-bottom: .5em;
	padding-left: 11px;
	padding-top: 14px;
	font-family: "Junge", serif;
}

/*****main*****/

main {
    padding-top: 20px;
    padding-left: 20px;
}

main h2{
	font-size: 28px;
    margin-bottom: .5em;
	padding-left: 11px;
	padding-top: 14px;
	font-family: "Junge", serif;
}

h3 {
    font-size: 24px;
	font-family: "Junge", serif;
}

ul li {
    margin-bottom: 1em;
}

main #assignments ul{
    columns: 2;
}

/*****aside****/

aside {
    padding: 20px;
    background-color: #A3C4AC;
    border-bottom: 2px solid black;
}

.name{
    font-size: 5vw;
    padding-top: 10px;
    padding-bottom: -10px;
}
.pronouns {
    font-size: 14px;
    font-style: italic;
}

aside #aboutme{
    display: flex;
    padding-bottom: 20px;
}

aside #aboutme p{
    width: 50%;
}

aside img {
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #000000;
    height: 200px;
    width: auto;
}



@media only screen and (min-width: 600px) {
    
    header, footer {
        width: 100%;
    }


    aside #aboutme{
        display: flex;
        flex-direction: row-reverse;
    }

    .name{
        font-size: 3vw;
        padding-top: 30px;
    }

    img{
        height: 200px;
        width: auto;
        position: relative;
        top: -40px;
    }
}

@media only screen and (min-width: 800px) {
    .container{ 
        margin: auto; 
    }

    .container{ 
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }

    header h1{
        font-size: 5vw;;
    }

    main { 
        flex: 2; 
        border-right: 2px solid black;
    }

    aside { 
        flex: 1; 
    }

    aside #aboutme{
        display: grid;
        grid-template-columns: 1fr;
    }

    aside #aboutme p{
        width: 100%;
        margin-top: -10px;
    }

    aside .name{
        padding-bottom: 10px;
        font-size: 2.5vw;
    }    
    
    }

