* {
  box-sizing: border-box;
}

body {
  margin: 10;
}


.header {
  background-color: #F1F1F1;
  text-align: center;
  padding: 20px;
}


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

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

/* Links - change color on hover */
.topnav a:hover {
  background-color: #FFDD00;
  color: #0057B7;
}


/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 20px;
}

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

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

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

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}