* {
    box-sizing: border-box;
  }
  
  /* Add a gray background color with some padding */
  body {
    font-family: 'Trebuchet MS',Monospace,Serif,Tahoma,sans-serif,Helvetica,Arial;
    padding: 20px;
    background: #f1f1f1;
  }
  
  /* Header/Blog Title */
  .floatClear{
    content: "";
    clear: both;
    display: table;
  } 
 
  .fllogo{
    float: left;
    margin-right:20px; 
    width:100px;
    height:100px; 
  }
  .maintitle{
    float:left; 
    position: relative; 
    left: 30px; 
    top:10px;   
    text-shadow: 0 0 8px #adadad;
  }

  .icons{
    float: left;
    font-size:xx-large; 
    margin: 15px;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {   
    float: left;
    width: 75%;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    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: 10px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    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;
    }

    .maintitle, .fllogo{  
      float:none;
      text-align: center;
      position: relative; 
      left:0px; 
      top:0px;   
      display: block;
      margin-left: auto;
      margin-right: auto;
      }
  }
