body {
  font-family: Arial;
  padding: 20px;
  background: #A4A4A4;
}

/* Header/Blog Title */
.header {
  background: #ECE0F8;
  background-image: url("img/1260-fog.jpg");
  background-position: center;
  padding: 80px;
  font-size: 40px;
  text-align: center;
  width: 100%;
  height: 300px;
  box-sizing: border-box;
}

h1 {
    color: #D8D8D8;
    font-size: 50px;
}

.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

.gallery:hover {
  border: 1px solid #777;
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

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