@charset "utf-8";
/* CSS Document */
.fa {
  padding-right: 2px;
  padding-bottom: 0px;
  padding-top: 3px;
  font-size: 16px;
  width: 20px;
  text-align: right;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial;
    padding: 20px;
    background: #f1f1f1;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid black;
    margin: 1em 0;
    padding: 0;
}
form {
	text-align: center
}
/* Header/Blog Title */
.header {
    padding: 0px;
    font-size: 12px;
    text-align: left;
    background: white;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #00306e;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 45px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: royalblue
}

/* Create two unequal columns that floats next to each other */

/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    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: #ddd;
    margin-top: 20px;
	font-size: 12px
}

.footernav {
	overflow: hidden;
    background-color: #00306e;
}

/* Style the footernav links */
.footernav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 6px 10.95%;
    text-decoration: none;
}

/* Change color on hover */
.footernav a:hover {
    background-color: royalblue
}

/* 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 (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 (max-width: 400px) {
    .topnav a {
        float: none;
        width:100%;
    }
}