header {
    background-image: url("./Images/Banner.png");
}
body {
    background-image: url("./Images/background2.png");
    font-family: Arial;
    padding: 20px;
}
h1 {
    font-size: 200px;
    text-align: center;
}
.button-table {
    background-color: rgb(121, 109, 107);
    border: medium dashed black;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 35px;
}
.main-buttons {
    width: 200px;
    height: 160px;
    border: medium solid black;

}
* {
    box-sizing: border-box;
  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }
  
  /* 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 */
  img.blogimg {
    background-color: darkred;
    padding: 10px;
    max-height: 100%;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
  }
  
  /* Add a card effect for articles */
  div.card {
    background: rgba(255, 255, 255, .65);
    padding: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    /*opacity: 50%;*/
  }
  
  /* 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;
    }
  }
