html {
    background: url("/images/bg.png") no-repeat bottom left fixed; 
    background-size: contain;
    color: #333;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 200;
    width: 620px;
    margin: auto;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-style: normal;
    background: url("/images/logo.svg") no-repeat top left;
    background-size: contain;
    text-indent: -9999em; 
    height: 112px;
    margin: 70px 0 60px -10px;
}

.accent {
    color: #D35914;
}

.logo-kern {
    padding-left:2px;
    padding-right:0px;
}

em {
    font-weight: 300;
    font-style: normal;
}

p.large {
    font-size: 32px;
    font-weight: 200;
    line-height: 1.4;
    overfow: visible;
}

p.large a {
    text-decoration: none;
    font-weight: 300;
}

p.large a:hover {
    color: #333;
}

p.hanging-portrait:before {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    background: url("/images/portrait.png") no-repeat;
    background-size: 60px 60px;
    margin-left: -75px;
    margin-top: -8px;
    transition-property: transform;
    animation-name: rotate; 
    animation-duration: 0.6s; 
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.34,1.48,.73,1);
}

@keyframes rotate {
    from {transform: scale(0%);}
    to {transform: rotate(100%);}
}

a.button, a.button:visited {
    font-size: 16px;
    display:inline-block;
    padding: 9px 20px;
    border: 1px solid #333;
    border-radius: 10px;
    font-weight: 300;
    text-decoration: none;
    color: #333;
    margin-right: 26px;
}

a.button:hover {
    background-color: #333;
    color: #fff;
}

/* footer sticky aan bodem maken */

.footer {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
    opacity: 0.5;
    margin-top: 170px;
    padding: 30px 0 30px 150px;
    background: url("/images/logo-small.svg") no-repeat;
    background-size: 117px 52px;
    background-position: 0px 26px;
    transition: opacity 0.2s;  
}

.footer:hover {
    opacity: 1;
}

.footer:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    z-index: 2;
    background: #333;
    left: 0;
    margin-top: -30px;
    opacity: 0.1;
}

span.tompouce {
    display: inline-block;
    width: 20px;
    margin-left: 4px;
    background: url("/images/tompouce.png") no-repeat;
    background-size: 16px 16px;
    background-position: 0 4px;
}

/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
        width: 260px;
    }

    h1 {
        height: 70px;
        margin: 35px 0 30px -10px;
    }

    p.large {
        font-size: 16px;
    }

    p.hanging-portrait:before {
        width: 30px;
        height: 30px;
        background-size: 30px 30px;
        margin-left: -40px;
        margin-top: -5px;
    }

    a.button, a.button:visited {
        font-size: 12px;
        display:inline-block;
        padding: 7px 15px;
        margin-right: 26px;
        margin-bottom: 10px;
    }

    .footer {
        font-size: 12px;
        margin-top: 100px;
        padding: 25px 0 30px 0;
        background: none;
    }

    span.tompouce {
        display: none;
    }
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 

 }

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
    
 }

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
    
 }

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
    
 }