body {
  margin: 0px;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  font-family: 'Source Sans Pro';
  }
  
h1 {
  display: block;
  border-bottom: 5px solid lightblue;
  font-family: 'Source Sans Pro';
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  background-color: #3d423d;
  letter-spacing: 1px;
  padding: 6px;
  color: #fff;
}

blockquote {
  font-family: 'Source Sans Pro';
  font-style: italic;
  }

#cleana {
  text-decoration: none;
  font-weight: bold;
  }

#boxleft {
  width: 80%;
  position: relative;
  }
  
#boxright {
  width: 30%;
  position: relative;
  float: right;
  }

#article {
  text-align: justify;
  text-justify: auto;
  width: 65%;
  margin: 1%;
  }

#content {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 80%;
  padding: 26px;
  background-color: lightgray;
  font-size: 16px;
  line-height: 22px;
  height: 100%;
  min-height: calc(100vh - 4rem);
  }
  
#footer {
  background-color: lightgray;
  }
  
#date {
  margin-top: 0px;
  background-color: lightblue;
  color: black;
  position: relative;
  top: -20px
  }

#header {
  background-color: #3d423d;
  line-height: 80px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 3px;
  font-size: 60px;
  height:175px;
  }
  
.headerbuttons {
  position: relative;
  top: -100px;
  }
  
#headerbutton {
    display: inline-block;
    width: 100px;
    font-size: 16px;
    color: lightblue;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 2px;
    padding: 10px;
    border: 2px gray solid;
    margin-right: 10px;
    margin-left: 10px;
    text-decoration: none;
    font-weight: bold;
  }

#headerbutton:hover {
    background-color: blue;
    color: #fff;
    border-color: black;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }