* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.header {
  background-color: #F1F1F1;
  background-image: url("https://i.imgur.com/KTKZnr4.jpg");
  background-size: 400px;
  color: #FFFFFF;
  background-position: center;
  text-align: center;
  padding: 20px;
}

/* The navbar container. you better fucking work i swear to god */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Navbar links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Links - change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

.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.side, .column.middle {
    width: 100%;
  }
}

.footer {
  background-image: url("https://i.imgur.com/G6nempA.jpg");
  background-position: center;
  background-size: 400px;
  background-color: #F1F1F1;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
}

