
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial;
    background: #f1f1f1;
    border:2px solid #006633;
  }
  
  /* Header/Blog Title */
  .header {
    padding: 5px;
    text-align: center;
    background:#006633;
    color:white;
    border:2px solid #FFCC33;
    text-shadow: #FFCC33;
    background-image:url(images/Mason.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    }
  
  .header h1 {
    font-size: 45px;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {   
    float: center;
    border:2px solid #006633;
  }
  
  /* Right column */
  .rightcolumn {
    float: center;
    width: 100%;
    background-color: #f1f1f1;
    padding: 20px;
    border:2px solid #006633;
  }
  
  /* Add a card effect for articles */
  .card {
    background-color: white;
    padding: 10px;
    margin-top: 5px;
  }
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  #footer {
    
    position: fixed;
    top:625px;
    left:1200px;
    bottom:0px;
    right: 0px;
    margin-bottom: 0rem;
    text-align: right;
    
  }
  .container-footer {
    background-color: #006633;
    padding: 20px;
   color:#FFCC33;
    background: #006633;
    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;
    }
  }
  a:link 
   {
    color: green;
  }
  
  /* visited link */
  a:visited
   {
    color: green;
  }
  
  /* mouse over link */
  a:hover 
  {
    color:#FFCC33;
  }
  
  /* selected link */
  a:active
   {
    color: yellow;
  }
  
  