* {
    box-sizing: border-box;
  }
  
  /* Add a gray background color with some padding */
  .settings {
    padding: 0px 100px 10px 100px;
  }
  .card:hover {
	box-shadow: 0 1px 31px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
	transition: all .2s ease-in-out;
	}
	
  
  /* 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;
  }
  
  /* Side Bar nav menu on blog page(Recent blogs) */
  .imageblog {
    background-color: white;
    width: 100%;
    height: fit-content;
    padding: 20px;
    border: 2px solid black;
    color: orange;
    font-weight: bold;
  }
  /* Add a card effect for articles */
  .card {
     background-color: white;
     padding: 20px;
     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;
    }
    .settings {
      padding: 0px 40px 10px 40px;
    }
  }

  h2{
    color: orange;
  }
  .leftcolumn p{
    font-weight: bold;
  }

  blockquotes {
    display: block;
      margin-block-start: 1em;
      margin-block-end: 1em;
      margin-inline-start: 40px;
      margin-inline-end: 40px;
      padding: 10px 20px;
      margin: 0 0 20px;
      border-left: 5px solid orange;
  }