/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image:url(images/roonz-nl-tP1yMIAV_6o-unsplash.jpg);
  background-color: black;
  color: white;
  font-family: serif; 
}
  
  .header {
  background-color: #36211b;
  text-align: center;
  padding: 20px;
}

/* The navbar container */
.topnav {
  overflow: hidden;
  background-color: #36211b;
}

/* Navbar links */
.topnav a {
  float: left;
  display: block;
  color: #e3dedc;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Links - change color on hover */
.topnav a:hover {
  background-color: #473631;
  color: #e3dedc;
}


/* columns */


.column {
  float: left;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* 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.side, .column.middle {
    width: 100%;
  }
}
