body {
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #444;
    background-color: #fff6a8;
    background: radial-gradient(white, #fff6a8);
}

* {
    box-sizing: border-box;
}

.sr-only {
    display: none;
}

.clear-float {
    clear: both;
}

a {
    color: inherit;
}

a:hover, a:focus, a:active {
    color: black;
    outline: 1px solid #444;
    text-decoration: none;
}

.flex-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.flex-layout>section {
    margin: 10px 30px;
}

header.header {
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    padding: 0 30px 10px 30px;
    box-sizing: content-box;
}

header.header h1 {
    padding: 0;
    margin: 0 0 15px 0;
    text-align: center;
}

header.header h1.title {
    font-size: 55px;
    line-height: 60px;
    padding-top: 30px;
    border-top: 10px solid #ffae00;
}

header.header h1.slogan {
    font-size: 30px;
    line-height: 35px;
}

#coffee {
    font-size: 60px;
    text-align: center;
}

#intro p {
    color: #111;
    text-align: justify;
    hyphens: auto;
    -ms-hyphens: auto;
}

h2.title,
h3.sub-title {
    font-size: 20px;
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 5px 0;
}

ul.skill-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li.skill-list-item {
    float: left;
    display: inline-block;
    height: 27px;
    padding: 1px 5px 0 5px;
    margin: 0 1px 1px 0;
    color: #eee;
    background-color: #555;
    border-radius: 3px;
    white-space: nowrap;
    cursor: default;
    overflow-y: hidden;
}

li.skill-list-item.featured {
    font-size: 200%;
    height: 55px;
    padding: 11px 8px 0 8px;
}

li.skill-list-item:hover {
    color: #ffae00;
    background-color: #333;
}

#references ul.ref-list {
    padding: 0 0 0 1.2em;
}

#references li.ref-list-item {
    margin-bottom: .25em;
}

footer.footer {
    border-top: 1px solid #ffae00;
    margin: 40px 30px;
    padding-top: 10px;
}

footer.footer ul.contact-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer.footer ul.contact-list>li {
    padding: 0;
    margin: 0 1em 0 0;
}

@media (min-width: 720px) {

    #app {
        margin-left: 130px;
    }

    #coffee {
        position: absolute;
        top: 80px;
        left: 50px;
    }

    header.header,
    .flex-layout>section {
        max-width: 500px;
    }

}

@media (min-width: 370px) {

    li.skill-list-item.featured {
        font-size: 250%;
        padding-top: 7px;
    }

}

@media print {

    .flex-layout,
    footer {
        display: block;
    }

    header.header,
    .flex-layout>section {
        max-width: none;
    }

}