﻿ 

 

/* Header/Blog Title */
.Blogheader {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.blogleftcolumn {
  float: left;
  width: 100%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  /*background-color: #aaa;*/
  width: 50%;
  align-content:center;
}

/* Add a card effect for articles */
.blogcard {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
 
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
 
}


 .blogcolumn {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.blogrow:after {
  content: "";
  display: table;
  clear: both;
}

 

/* 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;
  }
}