* {
  box-sizing: border-box;
}

body {
  margin: auto;
  background-image:url(https://images.fineartamerica.com/images-medium-large-5/hogwarts-at-night-karen-coombes.jpg);
  padding: 20px;
}

/* Style the header */
.header {
  background-color: transparent;
  text-align: center;
  color:#DAA520;
  font-family:New York;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: transparent;
  text-align:center;
}

/* Style the topnav links */
.topnav a {
  float:center;
  display:inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: red;
}

/* Create three equal columns that floats next to each other */
.column {
  float:left;
  width: 33.33%;
  padding: 15px;
  color:#E0E0E0;
  text-align:center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
  .column {
    width: 100%;
  }
}