html,body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #EDEBEB;
}
body {
    background-image: url("circles.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
}

header {
    background-color: transparent;
    height: 100px;
    background-repeat: repeat-x;
    background-size: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width:
}
header .logo {
    height: 80px;
    background-color: #324C98;
    padding:10px;
    position: absolute;
    left: 10%;
}
header .pic {
    height: 80px;
    background-color: transparent;
    padding:10px;
    position: absolute;
    right: 10%;
}
header #title {
    color: black;
    margin: auto;
    text-align: center;
}
header #title h1,h2 {
    margin:0;
}

nav {
    font-family: sans-serif;
    background-color: transparent;
    padding: 0 10%;
    margin-bottom:0;
    margin: 0 10%;
}
nav ul {
    list-style: none;
    display: inline-flex;
    margin-bottom: 7px;
}
nav li a {
    border-radius: 0 5px 0 0;
    padding: 7px;
    margin: 3px;
    background-color: #D8D8D8;
    color: #0101DF;
    text-decoration: none;
}
nav li a:hover {
    color: black;
    background-color: #CED8F6;
    border-bottom: 5px solid #324C98;
    text-decoration: none;
}

section {
    background-color: white;
    margin-top: 0;
    margin: 0 10%;
    padding: 5px 10px;
    display: flex;

    box-shadow: 10px 10px 10px grey;
}
section p {
    text-align: justify;
}
section p:first-letter {
    margin-left: 1em;
}
section a {
    color: inherit;
}
section a:hover {
    text-decoration: none;
    font-weight: lighter;
}

aside {
    flex: 1.5;
    position: relative;
    background-color: #706b64;
    box-shadow: 0px 2px 5px #1c1a19;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 0.8em;
    margin: 10px;
    word-wrap: break-word;
}
aside dl dt {
    font-weight: bold;
    padding-top: 10px;
}
aside a {
    text-decoration: none;
    color: inherit;
}
aside a:hover {
    text-decoration: underline;
}

article {
    flex:3;
    padding: 10px;
}

table {
    width: 90%;
    margin: auto;
}
table tr td {
    padding: 10px;
    vertical-align: top;
}
table tr th {
    font-weight: bold;
    text-align: left;
    width: 33%;
}

table.resume tr td:last-child {
    font-style: italic;
}
table.resume tr td:last-child:first-line {
    font-style: normal;
    font-weight: bold;
}

footer {
    margin-top: 20px;
    color: black;
    font-style: italic;
    text-align: center;
    padding-bottom: 5px;
}

button.resume {
    font-size: 1.2em;
    padding: 0.5em;
    background-color: #324C98;
    color: white;
    border-radius: 10px;
}
