
/* 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;
}
/* everything above resets css*/

body {
	background: #98D3F5; 
	padding: 25px 50px;
	}
  * {box-sizing: border-box;}
.wrapper {
	background: #DDF4FF;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px;
	grid-auto-rows: minmax(100px, auto);
	max-width: 1600px;
	margin: 10px auto;
}
header { 
	grid-column: 2 / 5;
	grid-row: 1 / 1;
	border: 2px solid darkblue;
	margin: 15px;
}
h1 {
	font-size: 2em; 
	font-weight: 30;
	text-align: center;
	padding: 10px;
	background: white;
}
.neuton-regular {
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: normal;
}
nav {
	list-style: none;
	text-align: center;
}
nav li {
	display: inline;
}
nav a{
	display: inline-block;
	text-decoration: none;
	padding: 10px;
	margin: 2px;
	color: #DDDDDD;
	background: #222288;
}
nav a:hover {
	color: white;
	background: #2222CC;
}
nav {
	border-top: 2px dashed darkblue;
	padding: 5px;
}
article {
	grid-column: 1 / 6;
	grid-row: 2 / 4;
	margin: 15px;
	margin-bottom: 0px;
}
article li {
	margin-left: 50px;
}
h2, h3, h4 {
	font-size: 1.5em; 
	font-weight: 30;
	padding: 7px;
	background: #F8FDFF
}
article p {
	padding: 5px;
	margin: 15px;
}
hr {border: 1px solid darkblue}
footer {
	grid-column: 1 / 6;
	 grid-row: 4 / 5;
	 margin: 10px;
	 margin-top: 0px;
}
/* Overrides desktop style when viewport is less than 600px (for smart phones) */
@media only screen and (max-width: 600px) {
    
}