* {
  box-sizing: border-box;
}

body {
 	font-family: "Georgia" "Times New Roman", Times, serif;
  padding: 1px;
	background-image: url(brush.gif);
}
  
.content {
	max-width: 1400px;
	margin: auto;
	background: ivory;
	padding: 4px;
}

/* Header/Blog Title */
.header {
  padding: 10px;
  text-align: center;
  background: #ebe2c7;
}

.header h1 {
  font-size: 48px;
	border-radius: 10px;
}

.header h2 {
  font-size: 24px;
	border-style: solid;
	border-width: medium;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #d3d3d3;
	border-radius: 1px;
	border-style: solid;
	border-width: thin;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
	border-radius: 5px;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #f1e7da;
  color: blue;
}

.active {
  background-color: tan;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 25%;
	padding: 2px;
	border-left: 10px;
	background-color: ivory;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 75%;
	padding: 2px;
  border-right: 10px;
  background-color: ivory;
}

/* image stays in container */
.clearfix {
  overflow: auto;
  content: "";
  display: table;
  clear: both;
}

/* image float right*/
.imgright {
	float: right;
}

/* image float left */
.imgleft {
  float: left;
}

/* Add a card effect for articles */
.card {
  padding: 20px;
  margin-top: 1px;
	overflow:auto;
 	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card2 {
  background-color: #ebe2c7;
  padding: 20px;
  margin-top: 1px;
	overflow:auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 5px;
  border-style: solid;
	border-width: thin;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
}

/* Content */
.content {
  background-color: #ebe2c7;
  padding: 10px;
}

/* Clear floats after the rows or columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 4px;
  text-align: center;
  background: #ebe2c7;
  margin-top: 2px;
	max-width: 1400px;
	border-radius: 5px;
	border-style: solid;
	border-width: thin;
  font-size: 16px;
}

/* 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: 900px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
  .column {
    width: 50%;
    padding: 0;
  }
  .topnav a {
    padding: 6px 8px;
    text-decoration: none;
	  border-radius: 3px;
  }
	.header {
    padding: 8px;
    text-align: center;
    background: #ebe2c7;
  }
	.header h1 {
	  font-size: 36px;
		border-radius: 8px;
	}
  .footer {
    padding: 4px;
    margin-top: 2px;
	  border-radius: 2px;
    font-size: 14px;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .topnav a {
    float: none;
    width: 100%;
  }
   .column {
    width: 100%;
  }
  .topnav a {
    padding: 3px 5px;
    text-decoration: none;
	  border-radius: 1px;
  }
	.header {
    padding: 5px;
    text-align: center;
    background: #ebe2c7;
  }
	.header h1 {
	  font-size: 24px;
		border-radius: 5px;
	  }
  .footer {
    padding: 2px;
    margin-top: 2px;
	  border-radius: 2px;
    font-size: 12px;
  }
}
