* {
  box-sizing: border-box;
}

body {
    background-image: url(IMG/background/comp016.gif);
    background-position:center;
    background-attachment: fixed;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: #fff000;
  border: grey 7px groove;
  border-radius: 25px;
}

                                            /* 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;
}


                                                    /* Add a card effect for articles */
.card {
  background-color: #fff000;
  padding: 20px;
  margin-top: 20px;
  border: grey 7px groove;
  border-radius: 25px;
  


}

.link {
  background-color: #fff000;
  padding: 20;
  border: grey 7px groove;
  border-radius: 25px;
}

/* 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;
  }
}