
/*
===============================================================================
Start CSS Reset
===============================================================================
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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;
}
/*
===============================================================================
End CSS Reset
===============================================================================
*/

body {
    margin: 0px;
    background-color:#22232a;
        font-family: "Cinzel", serif;
        font-weight: 400;
        font-style: normal;
}

header,
footer {
    overflow: hidden;
    color: whitesmoke;
}

header  h1{
    float: left;
    width: fit-content;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 40px 0 0 0;
    font-size: 48px;
    border-top: 5px solid #4450ba;;
}

header h2{
    font-size: 24px;
    padding: 20px 0 20px 0;
    text-align: right;
    white-space: nowrap;
}

nav {
    display: flex;
    justify-content: right;
}

nav a {
    color: whitesmoke;
    text-align: center;
    padding: 14px 16px;
    background-color: #383b51;
    text-decoration: none;
}

nav a.active {
background-color: #545a8b;
color: #f5f5f5;
}

nav a:hover {
    background-color: #2a2b35;
    color: #ffffff;
}

header, 
nav,
article, 
footer {
    padding: 0 13% 0 13%;
}

article {
    background-color: rgb(234, 237, 253);
    padding-top: 10px;
    padding-bottom: 10px;
}

article h1{
    width: fit-content;
font-size: 30px;
color: #4450ba;
border-bottom: 2px solid #4450ba;
padding-top: 10px;
margin-bottom: 20px;
}


article h2{
 text-align: center;
 font-size: 24px;
 color: #585858;
 border-bottom: 1.25px solid #585858;
 margin-bottom: 20px;
}

article h2{
 margin-top: 20px;
}

article p.dates {
 float: right;
}

article h3 {
 font-size: 20px;
 padding-bottom: 5px;
 text-transform: uppercase;
}

article h4 {
 padding-bottom: 5px;
 font-size: 18px;
}

ul.a {
    list-style: inside;
    list-style-type: disc;
    font-size: 15px;
}

.row{
margin: 8px -16px;
}

.row,
.row > .column{
padding: 8px;
}

.column{
float: left;
width: 25%;
}

.row:after{
 content: '';
 display: table;
 clear: both;
}

.content{
 background-color: #b5caeb;
 padding: 10px;
 min-width: 224px;
 min-height: 490px;
}

.content h3 {
    text-transform: none;
    font-weight: bold;
    margin: 10px 0 10px 0;
}

.content p {
    font-size: 18px;
}

footer {
 font-size: 12px;
 padding-top: 40px;
 padding-bottom: 20px;
}

footer > h1 {
 float: left;
 text-transform: uppercase;
}


article p{
    line-height: 20px;
}

footer a {
    float: right;
    color: #ffffff;
    text-decoration: none;
    padding: 0 20px 0 20px;
}

footer a.active {
    color: #4450ba;
}

footer a:hover {
    color: #000000;
}

h3{
    width: fit-content;
font-size: 19px;
color: #447fba;
border-bottom: 2px solid #447fba;
padding-top: 10px;
margin-bottom: 20px;
}

h4{
    width: fit-content;
font-size: 19px;
color: #000000;
padding-top: 10px;
margin-bottom: 20px;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgb(127, 147, 198);
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input[type=submit] {
    background-color: #383b51;
    color: rgb(255, 255, 255);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #2a2b35;
  }
  
  .container {
    border-radius: 5px;
    background-color: rgb(138, 143, 167);
    padding: 20px;
  }

  @media screen and (max-width: 1190px) {
    header h2 {
        clear: left;
        text-align: unset;
        padding-top: 20px;
    }
  }

@media screen and (max-width: 900px) {
    .column {
        width: 50%;
    }

    nav {
        justify-content: unset;
        flex-direction: column;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}

/*cut and repaste*/