* {
  box-sizing: border-box;
}

body {
  font-family: Garamond;
  padding: 20px;
  background: black;
}

.footstyle {
  background-color: #333;
  overflow: hidden;
}

.foottext {
  float: left;
  text-align: center;
  color: floralwhite;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: black;
  color: floralwhite;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.left {
  float: left;
  width: 25%;
}

/* Right column */
.right {
  float: left;
  width: 75%;
  padding-left: 20px;
}


/* Fake image */
.fakeimg {
  background-color: black;
  width: 100%;
  padding: 0px;
  
}

/* Image */
.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Add a card effect for articles */
.card {
  background-color: #333;
  padding: 20px;
  margin-top: 20px;
  cursor: pointer;
  color: floralwhite;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  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;
  }
}



/* top navigation panel */
/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #006228;
  color: white;
}


/*link style colors*/
<style>
a:link {
  color: lightgrey;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: lightgrey;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #ffcb06;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #ffcb06;
  background-color: transparent;
  text-decoration: underline;
}
</style> 


