@import url("https://use.typekit.net/xzl5ujh.css");
@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:200,300,400,500,600,700");

body{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: "Libre Franklin", sans-serif;

}

.content{
    padding:30px;
}

ul{
    margin-left:20px;
}
li{
    margin-top: 10px;
}

a {
  color: #00B7FF;
}


.fixed-top{
    height: 80px;
}

.header-spacer{
    display: none;
}

clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
*, *::before, *::after {
    box-sizing: border-box;
}

@media screen and (min-width: 1200px){
    .fixed-top{
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
        height: 80px;
    }
    .header-spacer{
        display: block;
        height: 80px;
    }
}