* {
  box-sizing: border-box;
}

body { 
  font-family: "Lucida Console";
  padding: 20px;   
  background: #8984B7;
  background-image: url('https://cdn.esahubble.org/archives/images/large/potw2503a.jpg');
  background-repeat: no-repeat; 
  background-attachment: fixed;
  background-size: cover;
}
 
 h2 {
  background-color: transparent;
  color: #BFACD5;
  

}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: transparent;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  text-align: center;
  background-color: #FAECFF;
  padding: 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: transparent;
  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;
  }
}