/**
 * The media queries
 *
 * From:
 *     http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
 */


/* ab bestimmten größen auch auf desks: */
@media only screen and (max-width : 960px) {
    body {
        background-position: -70px 0;
    }

    footer .contact {
        margin: 0 0 0 320px;
    }
}
