body {
  margin: 0;
  font-family:Tahoma, Geneva, sans-serif;
}
a:link {
  color: #58841B;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #375E00;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #93805F;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: #375E00;
  background-color: transparent;
  text-decoration: none;
}
{
  box-sizing: border-box;
}

.header {
  text-align: center;
  padding: 32px;
}

* {
  box-sizing: border-box;
}

/* SITE LAYOUT*/
body {
  font-family:Tahoma, Geneva, sans-serif;
  padding: 20px;
  background: #F2F0EA;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 30px;
  text-align: center;
  background: white;
}

/* right column */
.rightcolumn {   
  float: right;
  width: 75%;
}

/* left column */
.leftcolumn {
  float: left;
  width: 25%;
  padding-right: 20px;
}

/* IMAGE BLOCK */
.colorblock {
  background-color: #6AAA16;
  width: 100%;
  padding: 5px;
}

/* Add a card effect for articles */
.card {
   background-color: white;
   border-style:solid;
   border-color:#EBE7E1;
   padding: 20px;
   margin-top: 20px;
   font-family:Georgia, "Times New Roman", Times, serif;
}

/* BLOG ENTRY */
.entry {
   background-color: white;
   border-style:solid;
   border-color:#EBE7E1;
   padding: 20px;
   margin-top: 20px;
   font-family:Georgia, "Times New Roman", Times, serif;
}
.trailer {
	float:left;
	padding-right: 20px;
}

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

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #EBE7E1;
  margin-top: 20px;
}

/* 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: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
 
 /*BELOW IMAGE GRID STYLE */
 .row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  opacity: 0.8; 
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
  
</style>