body {

    margin: 0px;
    background-color: #cdd3d5;
}

h1, h2, h3, h4, h5, h6 {

    font-family: sans-serif;
}

p, li, a, td, figcaption, blockquote {

    font-family: sans-serif;
    font-size: 20px;
    text-decoration: none;
}

body {

    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: auto;
    grid-template-areas: 
    "header header header header"
    "aside main main main"
    "footer footer footer footer";
}

header {

    grid-area: header;
    display: grid;
    grid-template-columns: 60% 40%;
    height: 125px;
    align-items: center;
    background-color: #879199;
    border-bottom: 5px solid lightgray;
	border-left: 5px solid lightgray;
	border-top: 5px solid #0e0e0e;
	border-right: 5px solid #0e0e0e;
}

header > div {

    height: 115px;
    width: auto;
}

header > div > a > h1 {

    color: black;
    text-decoration: underline;
}

header > nav > menu {

	display: grid;
	list-style: none;
    padding-left: 0px;
    margin: 0px;
}

header > nav > menu > li > a {

	color: #0e0e0e;
}

aside {
    grid-template-areas: aside;
    display: grid;
    grid-template-columns: 100%;
    background-color: limegreen;
    border-bottom: 5px solid lightgray;
	border-left: 5px solid lightgray;
	border-top: 5px solid #0e0e0e;
	border-right: 5px solid #0e0e0e;

}

main {

	grid-area: main;
	grid-template-columns: 100%;
	height: 95vh;
	background-color: #f8f8f8;
    padding: 2px;
}

footer {

	grid-area: footer;
	background-color: #879199;
	height: 15vh;
	width: auto;
    border-bottom: 5px solid lightgray;
	border-left: 5px solid lightgray;
	border-top: 5px solid #0e0e0e;
	border-right: 5px solid #0e0e0e;

}

footer > div {

	padding-top: 10px;
}