@charset "utf-8";
/* CSS Document */



* {
    box-sizing: border-box;
}
body {
	margin: 0;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}
header {
    background: #074b82;
    height: 20vh;
    padding: 0px 160px 5px 160px;
}
footer {
	height: 20vh;
	background: #074b82;
    display: flex;
    justify-content: space-between;
    align-content: center;
    color: #FFFFFF;
    padding: 0px 160px 5px 160px;
}
h1 {
	color: #FFFFFF;
}
section aside {
    order 2;
    color: crimson;
}
section article {
    min-height: 60vh;
}
table, tr, td {
	border: 1px solid #000;
	border-collapse: collapse;
}
column {
    order: 4;
    padding: 0px 160px 5px 160px;
}
article, aside {
    background: #926630;
	padding: 0px 160px 5px 160px;
    margin: 0px;
    background-color: #fff;
	width: 80%;
}
nav {
    margin: 20;
    padding: 0em 5em 5em 5em;
    background:#b2b6f9;
    order: 0;
}
nav ul {
    list-style: none;
    padding: 100;
}
nav ul li {
    position: relative;
}
nav ul li a {
    width: 100%;
    color: #074b82;
    background: #b2b6f9;
    height: 64px;
    font-weight: bold;
    display: block;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    color: #000000;
}
nav ul li a:hover {
    background: #074b82;
    color: #b2b6f9;
    cursor: crosshair;
}
img {
    padding: 0;
    display: block;
    display: flex;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    align-items: flex-start;
}
main {
    display: flex;
    flex-direction: column;
    order: 6;
}





