

main {
	/* background of the main page, mine is a solid colour that matches the background */
	background-color: #e8e2d1;
}

* {
  box-sizing: border-box;
}

.comforter-regular {
  font-family: "Comforter", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Comforter", cursive;
  color: #362706;
  padding: 20px;
  background: #EEEEEE;
  background-image: url(https://static.wikia.nocookie.net/forgottenrealms/images/b/bc/Foxglove_antique_drawing.jpg);
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/9/93/Nest_-_Bird_%28PSF%29.png);
  background-repeat: no-repeat;
  background-position: center;
}

h2 span { 
    background-color: #E9E5D6; 
}

/* 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;
  background: #e8e2d1;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

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