* {
    box-sizing: border-box;
}

html,
body {
    color: #424040;
    font-size: 1em;
    line-height: 1.4;
    height: 100%;
    min-width: 280px;
    background: #94d3d3;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
}

h1,
h2 {
    font-weight: 600;
    margin: 0.8em 0;
}

h1 {
    font-size: 20px;
}
h2 {
    font-size: 16px;
}

.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.max-width {
    max-width: 600px;
}

header {
    margin-bottom: 16px;
}

.logo {
    display: block;
    width: 130px;
    margin: auto;
    transition: opacity 0.2s ease;
    text-align: center;
    position: relative;
    opacity: 0.8;
    width: 130px;
}

.logo img {
    width: 100%;
}

.logo > img:last-child {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in;
    opacity: 0;
    display: block;
}

.logo:hover > img:last-child {
    left: 2px;
    top: 3px;
    opacity: 0.5;
}

a {
    color: #424040;
}

a.blank {
    text-decoration: none;
}

.links, .centered {
    margin: auto;
    margin-bottom: 100px;
}

.links a {
    display: inline-block;
    margin: 0 14px;
    border: 1px solid #FFF;
    padding: 4px 10px;
    color: #fff;
    background: none;
    transition: all 0.2s ease-out;
    border-radius: 3px;
    text-align: center;
}

.links a:hover {
    color: black;
    background: white;
}

.rel {
    position: relative;
}

.text-centered {
    text-align: center;
}

footer {
    background: #94d3d3;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    padding: 4px;
}

footer {
    padding: 4px;
    transition: all 0.2s;
}

footer nav:hover {
    opacity: 1;
    background: #eee;
}

footer .footer-nav {
    float: right;
}

footer a {
    text-decoration: none;
    display: inline-block;
    padding: 0 8px;
    border-right: 1px solid #DDD;
    color: black;
}

footer a:last-child {
    border-right: none;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

@media only all and (max-width: 600px) {
    body {
        background: #94d3d3;
    }
    .links {
        margin-bottom: 40px;
    }
    .links a {
        margin: 12px 6px;
        display: block;
    }
    .logo img:last-child {
        display: none !important;
    }
    footer .footer-nav {
        float: none;
    }
}
