html, body {
  font-size: 21px;
  margin: 0px;
  padding: 0px;
  height: 100%;
  background-image:url('textured_paper.png');
  display: flex;
  flex-direction: column;
}
h1 {
  text-align: center;
}
img {
  vertical-align: top;
}
.verticalAlign {
  position: absolute;
  top: 50%; 
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 46%;
}
@media only screen and (max-width:800px) {
  .verticalAlign {
    display: inline;
    position: static;
    top: auto; 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
  }
}
#wrapper {
  display: flex;
  min-height:100vh;
  flex-direction: column;
  justify-content: space-between;
	position:relative;
}
#header {
  display: flex;
  background-image:url('tweed.png');
  width: 100%;
  min-height: 130px;
  transition: 0.5s;
}
#headerLogo {
    width: 210px;
    max-height: 80px;
    float: left;
    margin: 25px 0px 0px 35px;
}
#headerLinks {
  display: block;
  width: 618px;
  position: absolute;
  top: 45px;
  right: 0px;
}
#headerMenuButton {
  display: none;
  float: right;
  margin: 45px 40px 0px auto;
}
#header a {
  color: white;
  font-family: Sans-serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  text-align: right;
  -webkit-text-size-adjust: 100%;
}
#headerLinks a {
  padding: 5px 0px;
  margin: 0px 20px;
}
#header a:visited {
  color: white;
}
#header a:hover {
  color: #A8A8A8;
}
@media only screen and (max-width:880px) {
  #headerLinks {
    display: none;
  }
  #headerMenuButton {
    display: block;
  }
}

#body {
  color: #505050;
  max-width: 950px;
  margin: 0px auto auto auto;
  font-family: Sans-serif;
}
#body h1 {
  text-align: center;
  margin: 30px 0px 20px 0px;
}
#body h2 {
  margin-top: 20px;
}
#body h4 {
  margin: 20px 0px 0px 0px;
}
#body p {
  margin: 10px 0px 20px 0px;
}
#body a {
  color: #808080;
}
#body a:visited {
  color: #808080;
}
#body a:hover {
  color: white;
}
#body .regularContent {
	text-align: justify;  
	-moz-text-align-last: justify; /* For Firefox */
	text-align-last: left;
  contain: layout;
}
@media only screen and (max-width:600px)
{
	#body .regularContent {
		text-align: left;  
		-moz-text-align-last: left; /* For Firefox */
		text-align-last: left;
	}
}
#body .regularContent img {
    float: right;
    width: 50%;
    margin: 20px 0px 20px 40px;
}
@media only screen and (max-width:1000px)
{
  #body h1 {
    margin: 30px 0px 20px 0px;
  }
  #body h2 {
    margin: 20px 0px 0px 20px;
  }
  #body h3 {
    margin: 20px 0px 0px 20px;
  }
  #body h4 {
    margin: 20px 20px 0px 20px;
  }
  #body p {
    margin: 10px 20px 20px 20px;
  }
  #body .regularContent img {
    margin: 20px 20px 20px 20px;
  }
}
@media only screen and (max-width:600px) {
  #body .regularContent img {
    width: 100%;
    margin: 0px 0px 20px 0px;
  }
  #body h1 {
    margin: 20px 10px;
  }
}
#footer {
    background-image:url('tweed.png');
    color: #A8A8A8;
    font-size: 16px;
    width: 100%;
    text-align:center;
}
#footer a {
    color: #A8A8A8;
    font-family: Sans-serif;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 10px 10px 10px;
    display:inline-block;
}
#footer a:hover {
    color: white;
}