
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial;
    padding: 0px;
    background: #e0e0e0;
  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: auto;
    text-align: center;
    background: rgb(255, 255, 255);
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    float: left;
    width: 100%;
  }
  /* Add a card effect for articles */
  .card {
    background-color: rgb(229, 219, 219);
    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;
  }
  
  /* 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;
    }
  }
  .image img{
      width: 100%;
      height: 30rem;
      object-fit:contain;
  }
  .card p a{
    color: black;
  }
