    /*Basic*/
    
    html {
        box-sizing: border-box;
        height: 100%;
        min-height: 100%;
    }
    
    html,
    input,
    select,
    textarea {
        font-size: 16px;
    }
    
    body,
    input,
    select,
    textarea {
        font-family: 'Avenir Next Cyr', sans-serif;
        font-weight: normal;
        line-height: 1.5em;
        letter-spacing: -0.015em;
    }
    /*Custom*/
    
    Body #header .content {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 0 0;
    }

    Body #header .content img {
        max-width: 240px;
    }
    
    Body #footer a {
        cursor: pointer;
    }
    
    Body #footer p {
        text-decoration: none;
        font-size: 0.8rem;
        padding: 0;
        margin: 0;
    }
    
    @media screen and (max-width: 480px) {
        Body #footer p {
            font-size: 0.75rem;
        }
    }
    
    @media screen and (min-width: 1200px) {
        Body #footer p {
            font-size: 0.75rem;
        }
    }
    /*Home*/
    
    Body.home {
        background-color: #ffffff;
        height: 100%;
        overflow: hidden;
        min-height: 100%;
        margin: 0;
        padding: 0;
    }
    
    Body.home header#header {
        padding: 0% 20% 0% 20%;
        height: 100%;
        align-items: center;
        display: flex;
    }
    
    Body.home #footer {
        padding: 0% 0% 1% 0%;
        color: #272727;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    Body.home #footer p {
        color: #272727;
    }
    /*Section*/
    
    Body.impressum {
        padding: 1rem 1rem 2rem 1rem;
    }
    
    Body section#one {
        background: #fff;
        width: 100%;
        max-width: 960px;
        margin: auto;
    }
    
    Body section#one header img {
        width: 160px;
        margin-bottom: 1rem;
    }
    
    Body section#one header div {
        margin-bottom: 0.5rem;
    }
    
    Body section#one p,
    Body section#one h2 {
        padding: 0;
        margin: 0;
    }
    
    Body section#one h2 {
        font-family: 'Avenir Next Cyr';
        font-weight: 500;
        font-style: normal;
        font-size: 1.3rem;
        line-height: 1.33;
    }
    
    @media screen and (max-width: 480px) {
        Body section#one h2 {
            font-size: 1rem;
        }
    }
    
    Body section#one .space p strong {
        display: flex;
        margin-bottom: 5px;
    }
    
    Body section#one p {
        font-family: 'Avenir Next Cyr';
        font-weight: 300;
        font-style: normal;
        font-size: 1rem;
        line-height: 1.33;
    }
    
    Body section#one p strong {
        margin-bottom: 5px;
    }
    
    @media screen and (max-width: 480px) {
        Body section#one p {
            font-size: 0.85rem;
        }
    }
    
    Body.impressum #footer {
        color: #000;
        text-align: center;
        bottom: 0;
        position: fixed;
        left: 0;
        background: #fff;
        right: 0;
        padding: 1%;
    }
    
    Body.impressum #footer p {
        color: #000;
    }