* {
	padding: 0px;
	margin: 0px;
}

@font-face {
    font-family: "titleFont";
    src:url(fonts/title.otf) format("opentype");
}

@font-face {
    font-family: "mainFont";
    src:url(fonts/main.otf) format("opentype");
}

@font-face {
    font-family: "headFont";
    src:url(fonts/head.otf) format("opentype");
}

@keyframes wiggle {
    from {transform: rotate(-2deg);}
    to {transform: rotate(2deg);}
}

header {
    padding: 10px;
    height: 1.8em;
}

strong{
    font-family: "titleFont";
    font-size: 32pt;
    color: #FF2A00;
}

.diagramBox{
  display: flex;
  flex: 1;
  align-items: center;
}

.diagramBox-img{
    width: 40%;
}

.diagramBox-cap{
    flex: 1;
    flex-direction: column;
    display: flex;
    padding-left: 10px;
}

.webmap {
  display: flex;
  width: 70%;
}

main {
	order: 3;
	overflow-y: auto;

    padding: 10px;
    padding-top: 0px;

    font-family:"mainFont";
    font-size: 10pt;

}

h1{
    font-size: 28pt;
    font-family: "titleFont";
    color: #FF2A00;
}

h2{
    font-size: 12pt;
    font-family: "titleFont";
    color: #FF2A00;
}

h3{
    font-size: 12pt;
    font-family: "mainFont";
    color: #FF2A00;
    margin-bottom: 1em;
}

h4{
    font-size: 14pt;
    font-family: "headFont";
    color: #FF2A00;
    margin-bottom: 0.5em;
}

h5{
    font-size: 14pt;
    font-family: "titleFont";
    color: #000000;
    margin-top: 0.5em;
}

nav {
	padding: 10px;
    padding-top: 0px;
    font-family: "titleFont";
}

img{
    max-width: 100%;
    margin-bottom: 1em; 
}

footer {
    order: 10;
    padding-left: 10px;
    font-family: "titleFont";
}

.flink {
    font-size: 10pt;
}

.Layout {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.Layout-body {
  display: flex;
  flex: 1;
}

.Layout-content {
  flex: 1;
}

.Layout-nav {
  /* 12em is the width of the columns */
  flex: 0 0;
  width: 180px;
  padding: 0px;
}

object{
	width: inherit;
	height: 540px;
}

a {
	color: #FF2A00;
	text-decoration: none;
	font-size: 18pt;
	line-height:24pt;
}

a:hover {
    border-bottom: 6px solid black;

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
}

::-webkit-scrollbar { 
    display: none; 
}

.greyscale{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

#portrait{
	animation-name: wiggle;
	animation-direction: alternate;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    margin-top: -60px;
}

.infotext{
	padding: 80px;
	padding-bottom: 0;
    color: white;
}

.infosection {
	background-image: url("img/paint_orange.png");
    background-attachment: local;
    background-repeat: no-repeat;
	max-height: 576px;
	flex: 0 0 432px;
}

.introparagraph {
    font-family: "headFont";
    font-size: 18pt;
}