/*	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, 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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

/*	BODY MIT HINTERGRUND-FOTO */

body {
    background-color: #111;
    background-image: url("bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    line-height: 1;
    font-size: 62.5%; /* BASIS-GRÖSSE (62,5% = 10PX) */
}

#popup {
    background-color: #fff;
    background-image: none;
}

a {
    color: #FFF;
    text-decoration: none;
}

/*	�BERSCHRIFTEN: NAME / KURZBESCHR. */

h1, h2 {
    text-align: right;
    color: #FFF;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    padding: 0 5%;
    text-shadow: 1px 1px 0 #333;
}

h1 {
    font-size: 580%; /* IN BEZUG AUF BASIS-GRÖSSE (700% = 70PX) */
    letter-spacing: 10px;
    text-transform: uppercase;
    margin: 5% 0 10px 0;
}

h2 {
    font-size: 320%;
    letter-spacing: 1px;
}

#popup h1, #popup h2 {
    text-align: left;
    color: #777;
    text-shadow: none;
}

#popup a {
    color: #555;
    text-decoration: underline;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -o-transition: color .2s ease;
}

#popup a:hover {
    color: #000;
}

/*	BIOGRAFIE-BOX */

#biografie {
    text-align: right;
    float: right;
    position: relative;
    width: 60%;
    max-width: 720px;
    color: #FFF;
    font-family: 'Josefin Sans', sans-serif; /* 'Times New Roman',Times,serif; */
    font-weight: normal;
    font-size: 180%;
    line-height: 1.5em;
    text-shadow: 1px 1px 0 #333;
    margin: 20px 5% 0 5%;
    z-index: 1;
}

#biografie p {
    margin: 10px 0;
}

#biografie a {
    color: #ECCFAE;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -o-transition: color .2s ease;
}

#biografie a:hover {
    color: #FFF;
}

/*	SOCIAL-WEB-LINKS */

#links {
    width: 95%;
    position: fixed;
    bottom: 5%;
    right: 5%;
    text-align: right;
    z-index: 2;
}

#links img {
    width: 45px;
    height: auto;	
}

#links a {
    margin: 0 8px 0 0;
}

#links a:hover {
    opacity: .6;
    transition: opacity .3s ease;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
}

/*	AUSSTELLUNGS-TABELLE */

#popup table {
    text-align: left;
    position: relative;
    color: #777;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 160%;
    line-height: 1.5em;
    margin: 40px 5% 0 5%;
}

td {
    padding: 0 20px 0 0;
}

/*	OPTIMIERUNG F�R KLEINE BILDSCHIRME, AM 
        BEISPIEL DES IPHONE: */

@media only screen 
and (min-width : 320px) 
and (max-width : 568px) {
    h1, h2 {
        text-align: left;
    }

    #biografie {
        text-align: left;
        position: relative;
        width: 90%;
        color: #FFF;
        font-family: 'Josefin Sans', sans-serif; /* 'Times New Roman',Times,serif; */
        font-weight: normal;
        font-size: 180%;
        line-height: 1.5em;
        text-shadow: 1px 1px 0 #333;
        margin: 20px 5% 0 5%;
        z-index: 1;

    }

    #links {
        position: relative;
        width: 80%;
        margin: 20px 5% 20px 10%;
        text-align: left;
        z-index: 0;
    }

}