body {
  font-family: Arial;
  padding: 40px;
  background: darkslateblue
  
}

/* Header/Blog Title */
.header {
  padding: 20px;
  font-size: 45px;
  text-align: left;
  background: transparent;
}

.h2 {
  padding:20px;
  font-size: 10px;
  text-align:left;
  font-style: italic;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 50%;
  padding: 5px;
  
}

/* Right column */
.rightcolumn {
  float: left;
  width: 15%;
  padding: 5px;
}

/* Fake image */
.fakeimg {
  background-color: transparent;
  width: 100%;

}

/* Add a card effect for articles */
.card {
  background-color: SlateBlue;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: left;
  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;
  }
}