* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {
  background-color: #4682B4;
  background-size: 100% 100%;
  padding: 20px;
  text-align: center;
  color: #FFFFFF
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #000000;
}

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

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

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 15px;
  background-color: #4682b4;
  color: #ffffff
}

#page-container {
  background-color: #4682b4;
}

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

#page-container {
  position: relative;
  min-height: 100vh;
}

#content {
  padding-bottom: 2.5rem:
}

#footer {
  background-color: #000000;
  color: #f2f2f2;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
}

#footer p, h4 {
  text-align: left;
  list-style: none;
  line-height: 8px;
}

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

  