/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin        : 0;
    padding       : 0;
    border        : 0;
    font-size     : 100%;
    font          : inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing : 0;
}

body {
    min-height     : 100vh;
    color          : #333;
    background     : url(../img/startseite_localpublic_background.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    font-family    : Arial, Helvetica, sans-serif;
    font-size      : 1rem;
    line-height    : 1.5;
}


a {
    color          : #333;
    text-decoration: none;
}

img {
    max-width: 100%;
}

strong {
    font-weight: bold;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 6px;
    margin-left: 6px;
    list-style-type: circle;
}

.container {
    width         : 100%;
    max-width     : 800px;
    margin        : 0 auto;
    display       : flex;
    flex-direction: column;
}

.logo {
    width: 300px;
    margin: 0 auto 30px;
}

.page-content {
    background-color: #fff;
    padding: 30px;
    margin-top: 30px;
    border-radius: 6px;
    box-shadow : 0 3px 10px rgba(0, 0, 0, .6);
}

.page-content h1 {
    color: #d6594e;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-content h2 {
    color        : #d6594e;
    font-size    : 1.313rem;
    margin-bottom: 15px;
}

.page-content h3 {
    color        : #d6594e;
    font-size    : 1.125rem;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
}

.pin {
    width     : 100%;
    position  : relative;
    text-align: center;
}


.pin .contact {
    width           : 80%;
    margin          : 0 auto;
    background-color: #fff;
    box-shadow      : 0 3px 10px rgba(0, 0, 0, .6);
    padding         : 15px;
    border-radius   : 6px;
    font-size       : 1.125rem;
}

.pin .address {
    width           : 80%;
    margin          : 0 auto;
    color           : #d6594e;
    background-color: #fff;
    box-shadow      : 0 3px 10px rgba(0, 0, 0, .6);
    padding         : 15px;
    border-radius   : 6px;
    margin-top      : 20px;
}

.banner {
    width        : 80%;
    margin       : 25px auto;
    background   : #fff;
    box-shadow   : 0 3px 10px rgba(0, 0, 0, .6);
    padding      : 15px;
    border-radius: 6px;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%); */
    text-align   : center;
}

.banner h1 {
    color: #d6594e;
}

.banner span {
    display: block;
}

.banner span img {
    vertical-align: middle;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer a {
    display: block;
    font-size: 0.875rem;
    text-align: center;
    padding: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 6px;
}

@media screen and (min-width: 768px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .pin {
        height: 790px;
    }

    .pin .contact,
    .pin .address {
        background   : transparent;
        box-shadow   : none;
        border-radius: 0;
        position     : absolute;
        left         : 50%;
        transform    : translateX(-50%);
    }

    .pin .contact {
        color: #fff;
        top          : 300px;
    }

    .pin .contact a {
        color: #fff;
    }

    .pin .address {
        
        bottom       : 195px;
        
    }

    .banner {
        width        : 100%;
        margin       : 0 auto 30px;
        box-shadow   : none;
        padding      : 15px;
        border-radius: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
        text-align   : center;
    }

    .footer {
        justify-content: space-between;
        flex-direction: row;
    }

    .footer a {
        display: inline-block;
    }

}