body {
  background-color: lightgray;
  height: 100%;
  margin: 0;
}

h1 {
  color: black;
  font-family: Oswald;
  font-size: 30px;
}

p {
  color: black;
  font-family: Oswald, Arial, Helvetica, sans-serif;
  font-size: 20px;
  margin-left: 20px;
}

* {
  box-sizing: border-box;
}

body {
 
}

.content {
  min-height: calc(100vh - 70px);
}
.footer {
  height: 70px;
}


/* Style the header */
.header {
  padding: 20px;
  
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
}

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

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

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

/* Left and right column */
.column.side {
  width: 50%;
  padding: 10px;
}

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

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