* {
    box-sizing: border-box;
  }
  
  /* Add a gray background color with some padding */
  body {
    font-family: Arial;
    padding: 20px;
    background: #f1f1f1;
    background-image: url(img.png)
  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: 30px;
    text-align: center;
    background: solid gray;
  }
  
  /* Add a card effect for articles */
  .card {
    margin-top: 10%;
  }
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    margin-top: 6%;
  }
  
  /* 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;
    }
  }
  body {
    background-color: lightgray;
    text-align: center;
}
img, object {
  max-height: 100%;
  max-width: 100%;
}
iframe, object {
  max-height: 100%;
  max-width: 100%;
}
.prevent-select {
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}