a {
text-decoration: none;
color: gold;
}

a:hover {
  text-decoration: none;
  color: midnightblue;
  }

* {
  box-sizing: border-box;
}


/* Left column */
.leftcolumn {
  float: left;
  width: 50%;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 50%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: transparent;
  width: 100%;
  /*padding: 20px;*/
}

/* Add a card effect for articles */
.card {
  background-color:lightskyblue;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px 30px 10px 30px;
}

/* Clear floats after the columns */
.row: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;
  }
}

