/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}
html, body{
    height: 100%;
    width: 100%;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    position: relative;
    font-family: 'roboto';
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: roboto;
    src: url("../font/roboto.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

nav {
    background-color: rgb(240,240,240);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 30px;
}
.nav-list li {
    display: inline;
    margin: 0 10px;
    list-style: none;
}
.nav-list a {
    text-decoration: none;
    color: rgb(38,27,31);
}
.top {
    background-color: rgba(233,233,233, .3);
    height: 30%;
}
.sr-only {
    position: absolute;
    overflow: hidden;
    width: 0;
}
.main-content {
    position: relative;
    background-image: url(../images/body-bg.png);
    padding: 20px 0;
}
.about {
    height: auto;
    width: 60%;
    margin: 0 auto 30px;
    padding: 0 15px;
    border: 3px solid rgba(0,0,0, 1);
    box-shadow: 5px 5px 0 0 rgba(0,0,0, .9);
}
.about p {
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(38,27,31, .9);
}
.about li {
    display: inline-block;
    margin: 15px 10px 0;
    padding: 3px 0;
    width: 100px;
    height: 1.2rem;
    box-shadow: 3px 3px 0 0 rgb(37,37,37);
    border: 3px solid rgb(0,0,0);
}
.about a {
    margin: 0 10px;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    color: rgb(37,37,37);
}
.content {
    height: 25vh;
    width: 80%;
    margin: auto;
    background-color: rgb(240,240,240);
    padding: 0 10px;
}
.content h2 {
    padding: 5px 10px;
    font-size: 1.2rem;
    display: inline-block;
    width: 140px;
    height: 1.2rem;
    box-shadow: 3px 3px 0 0 rgb(37,37,37);
    border: 3px solid rgb(0,0,0);
    margin: 10px;
    text-decoration: none;
    letter-spacing: 1px;
    color: rgb(37,37,37);
}
.content p {
    display: inline-block;
    padding: 10px 30px 10px;
    text-align: justify;
    font-size: 1.1rem;
    color: rgba(38,27,31, .9);
}
#copy {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 1rem;
    padding: 30px 0 0 30px;
}