* {
    font-family: sans-serif;
    box-sizing: border-box;
  }

  a {
    color: #026fb2;
    padding: 10px 10px;
  }

  /* Solid border */
  hr.solid {
    margin-top: 50px;
    border-top: 3px solid #bbb;
  }

  body {
    padding: 20px;
    background: white;
  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }

    /* Header/Blog Title */
 .topbar {
    font-family: sans-serif;
    padding: 20px;
    background: #f1f1f1;
    }
    
  /* 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 */
  .postsummary {
    font-family: sans-serif;
    background-color: #f5f5f5;
    width: 100%;
    padding: 20px;
  }
  
  .post {
    font-family: sans-serif;
    background-color: white;
    margin-top: 50px;
  }
  

  /* Add a card effect for articles */
  .card {
    font-family: sans-serif;
    background-color: white;
    padding: 5px;
    margin-top: 5px;
  }
  
  /* 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;
    }
  }