* {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    min-height: 100vh;
    /*padding-bottom: 82px;*/
}

h1, h2, h3, h4, a {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    text-decoration: none;
}

p {
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 160%;
    font-family: Merriweather, serif;
    font-weight: 300;
}

ul {
    margin-bottom: 20px;
}

li {
    font-family: Merriweather, serif;
    font-weight: 300;
}

#title {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
}

#description {
    color: #969696;
    font-size: 16px;
    font-weight: 300;
    line-height: 160%;
    margin: 10px auto;
    width: 70%;
}

.header {
    width: 100%;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding: 60px 0;
}

.content {
    padding: 60px 0 142px 0;
}

.footer {
    width: 100%;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    padding: 29px 0;
}

.w-container {
    margin: 0 auto;
    max-width: 940px;
}

.social-link-group {
    margin-top: 17px;
    margin-bottom: 3px;
}

.social-icon-link {
    width: 30px;
    margin-right: 7px;
    margin-left: 7px;
    padding: 4px;
    opacity: 0.36;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.social-icon-link:hover {
    opacity: 0.8;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block
}

.navbar {
    padding-bottom: 5px;
}

.nav-link {
    display: inline-block;
    margin-right: 22px;
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-link.w--current {
    color: #333;
}

.nav-link.float-right {
    margin-top: 5px;
    margin-right: 0px;
    float: right;
}

.post-wrapper {
    margin-left: 7%;
    margin-right: 7%;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d3d3d3;
}

.post-info-wrapper {
    margin: 10px 0;
}

.post-info {
    display: inline-block;
    margin-right: 8px;
    color: #969696;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

.post-info.when-link {
    text-decoration: none;
}

.post-info.when-link:hover {
    color: #333;
}

.post-summary {
    display: block;
    margin-bottom: 14px;
    line-height: 144%;
    color: #333;
    font-size: 16px;
    font-weight: 300;
}

.button-wrapper {
    margin-top: 80px;
    color: green;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 0 1px #ddd;
    -webkit-transition: box-shadow 200ms ease;
    transition: box-shadow 200ms ease;
    color: #333;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    box-shadow: 0 0 0 1px #333;
}

.button.w--current {
    background-color: #2e80b6;
}

.selected{
    background-color: #f0f0f0;
}

.monospaced {
    font-family: monospace;
}

.button-round {
    padding: 5px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 20px;
    background-color: #fff;
    -webkit-transition: border 200ms ease, color 200ms ease;
    transition: border 200ms ease, color 200ms ease;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.button-round:hover {
    border-color: #333;
    color: #333;
}

.w-button {
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .navbar {
        margin: 0 65px;
    }

    .nav-link.float-right {
        margin-top: 5px;
    }
}

@media screen and (max-width: 767px) {
    .navbar {
        margin: 0 55px;
    }

    .nav-link.float-right {
        margin-top: 5px;
    }
}

@media screen and (max-width: 479px) {
    .nav-link {
        margin-right: 10px;
    }

    .nav-link.float-right {
        float: none;
    }
}

.markdown {
    margin-left: 7%;
    margin-right: 7%;
}

.markdown h1, h2, h3, h4 {
    margin-bottom: 10px;
}

.markdown p, ul, ol, code {
    margin-bottom: 20px;
}

.markdown li {
    margin-bottom: 5px;
}

.markdown code {
    font-family: monospace;
    font-size: 16px;
}

.markdown blockquote>p {
    margin-bottom: 5px;
}