/*Lachlan Kelly*/
/*Version 1.0*/

* {
  box-sizing: border-box;
}
h1 {
  font-size: 65px;
}
h2 {font-size:40px;
}

p {
  font-size: 30px;
}
body {
  margin: 0;
}

/* Style the header */
.header {
  background-color: #f5f5f5;
  padding: 25px;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #B0C4DE;
}

/* Style the topnav links */
.topnav a {
  float: right;
  display: inline;
  color: #00008B;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 30px;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #FFF8DC;
  color: DarkBlue;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 15px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
  .column {
    width: 50%;
  }
}