.tagline {text-align:right;font-family:arial;color:white;width:50%;}
.themonthly {font-family:arial;font-size:6vw;color:white;}
.freedomobserver {font-family:"arial black";font-size:6vw;color:tomato;}
 
* {
   box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color:tomato;
}

/* Style the header */
.header 
{
 background-color:darkslategray;
  color: white;
  padding: 10px;
}

.bottom-left
{
  background-color: grey;  
  bottom: 8px;
  right: 16px;
}
.centered
{
  background-color: grey;  
  bottom: 8px;
  right: 16px;
}

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

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

/* Change color on hover */
.topnav a:hover {
  background-color: tomato;
  color: white;
}

/* Create three unequal columns that float next to each other */
.column {
  float: left;
  padding: 10px;
  height: 100%;
     }

/* Left and right column */
.side {
  width: 20%;
  color: white;
  text-align: center;
    }

/* Middle column */
  .middle {
  width: 60%;
  background-color: white;
  color: black;
    }
 
/* Style the left and right column links */

/* Style the column links */
.column a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.column a:hover {
  background-color: darkslategray;
  color: white;
}

/* Style the middle column links */
/* .middle a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
 
/* Change color on hover 
.column a:hover {
  background-color: darkslategray;
  color: white;
}
*/

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

/* Style the footer */
.footer {
  padding: 10px;
  text-align: center;
  background-color: darkslategray;
  color: white;
  width: 100%
  }


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}





