/*
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;
}
*/
:root{
    --dark-primary-color:#d32f2f;
    --light-primary-color:#ffcdd2;
    --primary-color:#f44336;
    --text-icons:#FFFFFF;
    --accent-color:#9e9e9e;
    --primary-text:#212121;
    --secondary-text:#757575;
    --divider-color:#BDBDBD;
    --heading-font:"Courier New", monospace;
    --text-font:"Times New Roman", Times, serif;
}

body{
    background-color: var(--dark-primary-color);
}

h1{
    font-family: var(--heading-font);
    color: var(--primary-text);
}

header{
    text-align: center;
    background-color: var(--light-primary-color);
}

main{
    background-color: var(--light-primary-color);
    font-family: var(--text-font);
}

/*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;
}*/

dt{
    font-size: larger;
    padding: 10px;
}

dd{
    color: var(--primary-text);
    font-size: large;
}

footer{
    background-color: var(--light-primary-color);
    width: 20%;
    margin-top: 110px;
}

footer p{
    color: var(--primary-text);
}

/*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;
}*/