* {
  box-sizing: border-box;
}

body {
  font-family: Verdana;
  padding: 20px 100px 20px 100px;
  background: #673504;
}


/* Header/Blog Title */
.header {
  padding: 0px 0px 0px 0px;
  text-align: left;
  background-image: url("../images/static/headerbg.png");
  background-repeat: repeat-x;
}

.header h1 {
  font-size: 10px;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #ffffff;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #ffffff;
  height: 20px;
  text-align: center;
  padding: 0px 5px 0px 0px;
  text-decoration: none;
}

/* do magic for image swaps */
.hover-image, .swap:hover .normal-image {
  display: none;
}
.active-image, .swap:active .hover-image {
  display: none;
}
.swap:hover .hover-image {
  display: inline;
}
.swap:active .hover-image {
  display: none;
}
.swap:active .active-image {
 display: inline;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  height: 100%;
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

.coverimage {
  float: left;
  padding: 10px 10px 10px 10px;
  

}

.modal {
  z-index:3;
  display:none;
  padding-top:100px;
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgb(0,0,0);
  background-color:rgba(0,0,0,0.4);
}

.modal-content {
  margin:auto;
  background-color:#fff;
  position:relative;
  padding:0;
  outline:0;
  width:600px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  overflow: hidden;
/*  box-shadow:  10px 10px 10px #673504 inset, -10px -10px 10px #673504 inset; */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 10px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}
/* Responsive layout - when the screen is landscape, make the two columns stack on top of each other instead of next to each other */
@media only screen and (orientation: landscape) {
	.leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
 body {
  font-family: Verdana;
  padding: 0px;
  background: #673504;
}
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1100px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
 body {
  font-family: Verdana;
  padding: 0px;
  background: #673504;
}
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}