
/* Load */

@import url('../fonts/fontpackMontserrat.css');

/* Setup */

body, div, main, section, article {
  box-sizing: border-box; 
}

body {
  max-width: 98%;
  margin: 0px auto 0px;
  padding: 0px 72px 36px;
  background-color: #FFFFFF; 
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Images */

header img {
  width: 500px;
  max-width: 98%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Text Formatting */

p, ul, ol{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: large;
  color: #34060E;
}

ol { /* this is kinda nasty. oh well */
	list-style-type: decimal;
}
ol > li > ol {list-style-type: lower-alpha;}
ol > li > ol > li > ol {list-style-type: lower-roman;}

ul {
	list-style-type: disc;
}
ul > li > ul {list-style-type: circle;}
ul > li > ul > li > ul {list-style-type: square;}

li {
	margin-top: 4pt;
	margin-bottom: 4pt;
}

/* Link Options */

.mainlink {
  font-weight: 800;
  margin: 1em auto;

  font-size: 20px;
  width: 98%;
  text-align: center;
  color: #9c546c;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: #FF0000;
}