@font-face {
    font-family: 'PT Sans';
    src: url(font/PTSans-Regular.ttf);
}

@font-face {
    font-family: 'Great Vibes';
    src: url(font/GreatVibes-Regular.ttf);
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background-image: url(image/bg_1.svg);
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-size: 18px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-family: 'Great Vibes', Arial, Helvetica, sans-serif;
    font-size: 56px;
    margin-bottom: .5em;
    text-align: center;
}

h2 {
    font-family: 'Great Vibes', Arial, Helvetica, sans-serif;
    font-size: 48px;
    margin-bottom: .5em;
    margin-top: 0px;
    text-align: center;
}

main {
    padding-left: 28%;
    display: flex;
    align-items: center;
}

id {
    display: block;
}

logo {
    text-align: center;
    margin-top: 10%;
    width: 40%;
}

#logo {
    width: 60%;
    transform: scaleX(-1);
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: #81b673
}

.icon {
    color: white;
    background-color: #81b673;
    border-radius: 100%;
    padding: 5px;
}

#privacy {
    display: block;
}

#impressum {
    display: block;
    height: 85%;
}

#home {
    height: 95%;
}

#main {
    width: 70%;
}

footer {
    padding-left: 28%;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    body {
        background-image: url(image/bg_mobile_rev_1.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        height: unset;
    }

    #home {
        display: block;
    }

    main {
        padding-left: 0;
        align-items: center;
        margin-top: 10%;
        padding: 0 1em 0 1em;
    }

    footer {
        padding-left: 0;
    }

    #main {
        width: unset;
    }

    h1 {
        font-size: 48px;
        margin-bottom: .2em;
    }

    h2 {
        font-size: 36px;
        margin-bottom: .2em;
    }

    logo {
        padding: 1em;
    }

    #logo {
        width: 50%;
        transform: scaleX(1);
    }
}