
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  font-size: 16pt;
  padding: 20px;
  background: red;
}

/* 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: red;
  height:260px;
  width: 100%;
  padding: 0px;
  
}

/* Image */
.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*contain: all inside, fit: distort, cover: crop*/

/* Add a card effect for articles */
.card {
  background-color: white;
  height: 300px;
  padding: 20px;
  margin-top: 20px;
  color: black;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}








.emphasis{
	color:red;
}

/*
body{
	font-family: Arial;
	font-size: 16pt;
	background-color: red;
	color: floralwhite;
	padding: 20px;
}
*/
article {
	text-align: left;
	max-width: 250mm;
	margin: 0 auto;
}



/* Add a black background color to the top navigation */
.topnav {
  background-color: white;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: black;
  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: black;
  color: white;
}



/*link style colors*/
<style>
a:link {
  color: lightgrey;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: Darkgrey;
  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> 

