@font-face {
    font-family: myFirstFont;
    src: url(sansation_light.woff);
}


* {
    box-sizing: border-box;
}

body {
  margin: 0;
font-family: myFirstFont;
}

/* Style the header */
.header {
 background-color: #3E708F;
    padding: 20px;
    text-align: center;
color: #FFFFFF;
}

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

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

/* Change color on hover */
.topnav a:hover {
background-color: #7EB0B5;
    color: black;
}
.main {
    float: left;
}

/* one column */
.main.side {
    width: 100%;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 35%;
    padding: 25px;
}

/* 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 (max-width:600px) {
    .column {
        width: 100%;
    }
}

.footer {
    background-color: #87AB9E;
    text-align: center;
    padding: 3px;
color:#FFFFFF;
}

