/* 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;
}

/*
==============

Reset all default CSS styles

==============
*/

/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

html,body{
    font-family: Constantia, Trajan, Rockwell, Helvetica;
}
.paragraph p{
    font-size: 19px;
}

/* this will keep everything within 1200px - padding increases,decrease the gaps on left and right sides */
.site-container{
    max-width: 1200px;
    width: 100%;
    padding: 0 175px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.spaced{
    justify-content: center;
}
.vert-center{
    align-items: center;
    align-content: center;
}
a{
    color: #000;
}
#header{
    padding: 24px 0;
}
#header a{
    text-decoration: none;font-size: 19px;/* main menu words */
}
h1{
    font-size: 24px;
}

#header nav a{
    padding: 0 6px;
    display: block;
}
#header nav li{
    margin-left: 16px;
}
main{
    padding-top: 25px;
}
.row{
    margin: 42px 0;
    padding-bottom: 15px;
}
.row .col:first-child{
    margin-right: 35px;
}
/* this centers the rows */
.m-auto{
    margin: 42px auto;
}
.row.align-text-left .col:last-child{
    margin: 0 0 0 20px;
}
.row.align-text-right .col:first-child{
    margin: 0 20px 0 0;
}

h2{
    font-size: 24px; /* for title of stories */
    font-weight: bold;
    margin-bottom: 12px;
}

/* you can use this to set a max width on things, add more if needed */
.max-width-800{
    max-width: 800px;
}

#back-top-top{
    display: block;
    width: 100%;
    text-align: center;
    background: #333;
    color: #fff;
    padding: 14px;
    margin-top: 60px;
    text-decoration: none;
}



/* let's make it more mobile friendly */
@media only screen and (max-width: 600px) {
    .site-container {
        padding: 0 20px;
    }
    .flex {
        display: block;
    }
}
.site-container {
    
}
