@font-face 
{
    font-family: 'novela';
    src: url('../fonts/novela-displayregular-webfont.woff2') format('woff2'),
         url('../fonts/novela-displayregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body
{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body
{
    min-height: 100vh;
    background: url('../img/bg.jpg') no-repeat center center;
    background-size: cover;
}

img
{
    max-width: 100%;
}

a
{
    text-decoration: none;

    img
    {
        border: none;
    }
}

h1,
h2,
h3,
h4,
h5
{
    font-family: 'novela', Times, serif;
}

body.home
{
    color: white;

    a
    {
        color: white;
    }

    .container
    {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        box-sizing: border-box;
    }

    .footer
    {
        position: fixed;
        width: 100%;
        bottom: 0;

        h5,
        p
        {
            margin: 0;
            font-size: 23px;
        }

        h5
        {
            text-transform: uppercase;
            font-weight: normal;
        }

        p
        {
            font-weight: 500;
        }

        a
        {
            text-decoration: underline;
        }

        .wrap
        {
            display: flex;
            flex-wrap: wrap;
            box-sizing: border-box;
            justify-content: space-between;
            align-items: end;
            max-width: 1800px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }

        .block
        {
            padding: 20px;
        }
    }
}

body.impressum
{
    background: #F2E6CC;
    color: black;
    font-size: 35px;
    text-align: center;

    a
    {
        color: black;
    }

    h1
    {
        padding-top: 150px;
        font-size: 60px;
    }

    .logo
    {
        padding-top: 60px;

        img
        {
            width: 100%;
            max-width: 250px;
            height: auto;
        }
    }
}

@media(max-width: 1700px)
{
    body.home
    {
        .container
        {
            flex-wrap: wrap;
            align-content: end;
            align-items: end;
            height: auto;
            min-height: 100vh;
            padding: 20px;
        }

        .logo
        {
            padding: 20px 40px;
            align-self: end;
        }

        .footer
        {
            position: static;
            text-align: center;
            align-self: end;

            .wrap
            {
                display: block;
            }

            .block
            {
                padding: 10px 20px;
            }
        }
    }
}

@media(max-width: 900px)
{
    body.home
    {
        .footer
        {
            h5,
            p
            {
                font-size: 20px;
            }
        }
    }
}

@media(max-width: 500px)
{
    body.home
    {
        .footer
        {
            .block2,
            .block3
            {
                h5
                {
                    display: none;
                }
            }
        }
    }
}