/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/*
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*/

*{
    box-sizing: border-box;
    overflow: auto;
}

body{
    background-color: #88292F;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

main{
    color: #FFE0B5;
}

header{
    text-align: center;
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

figure{
    text-align: center;
    color: #FFE0B5;
}

img{
    display: block;
    margin: 0 auto;
}

aside{
    width: 25%;
    float: right;
    margin-left: 10px;
    border: 3px solid #416165;
    color: #FFE0B5;
}

footer{
    margin-top: 110px;
    color: #416165;
    background-color: #A1CDA8;
    width: 20%;
}

nav{
    text-align: center;
    margin-top: 25px;
}

nav a{
    padding: 10px 20px;
    margin-left: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: large;
    background-color: #D1D2F9;
    border-radius: 15px;
    border: 3px solid #D1D2F9;
    color: #416165;
}

nav a:hover{
    color: #FFE0B5;
    background: #88292F;
}