
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 12px;
  background: #f1f1f1;
}



/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background: white;
}

.header h1 {
  font-size: 50px;
}

p {
	
	font-size: 16px;
  font-family: Arial;
  padding: 0px 0px 10px 0px;
  line-height: 1.5;
  
 
}


hr {
            border: 2px solid #FF0000;
            width: 50%;
            margin: 20px auto;
        }


 figure {
      display: block;
      margin: 0;
      padding: 0;
   }
   
blockquote {

margin-left: 20px;
	
}

cite {
	padding: 0px 0px 0px 0px;
  margin-left: 20px;
  
  
}  

        
.img-right-padding {
  padding: 25px 0px 25px 25px;
  font-family: Arial;
  
}

.img-figure {
  padding: 0px 0px 0px 0px;
  
}

.small-text {
font-size: 12px;
}





/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #FF0000;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 60%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 40%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #000000;
  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;
  }
}

/* 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: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
