/*
------------------------------------------------------------------------------------------------------------------------
Allgemein 
------------------------------------------------------------------------------------------------------------------------
*/

/* generelle Schriftart */
body {
    font-family: "Courier New"; 
    margin: 0px;
}

/* Überschriften bzw. Verzeichnis */
h1 {
    font-size: 15pt;
    color: rgb(80, 80, 80);
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

/* Normaler Text bzw. Biografie */
p {
    font-size: 10pt;
    line-height: 1.5;   /* Einrückung des Texts */
}

/* Fußnoten bzw. Copyright */
.footnote1 {
    font-size: 9pt;
    line-height: 1;
    text-align: center;
    margin-top: 200px;
}

.footnote2 {
    font-size: 9pt;
    line-height: 1;
    text-align: center;
    margin-top: 630px;
}

/* Links allgemein */
a {text-decoration: none;}

/* unaktivierter und unanvisierter Link */
a:link {color: rgb(80, 80, 80);}

/* Link nach Besuch */
a:visited {color: rgb(80, 80, 80);  font-style: italic;}

/* Link über Tastatur anvisiert */
a:focus {color: rgb(80, 80, 80);font-style: italic;}

/* Link über Maus anvisiert */
a:hover {color: rgb(80, 80, 80);font-style: italic;}

/* aktivierter Link */
a:active {color: rgb(80, 80, 80);font-style: italic;}

/* Box um Überschriften bzw. Verzeichnis */
.box1 {
    padding: 10px;
}

/* Box um Lebenslauf */
.box2 {
    max-width: 800px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

figure {
    position: relative;
    margin: 0px;
    padding: 12px;
}

/*
------------------------------------------------------------------------------------------------------------------------
Screen ab 925px
------------------------------------------------------------------------------------------------------------------------
*/

@media only screen and (min-width: 925px) {
    .hoch {
        width: 526px;
        margin-top: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 5px;
    }
    
    .quer {
        width: 900px;
        margin-top: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;  
        padding-bottom: 5px;  
    }
 
    figcaption {
        font-size: 10.5pt;
        color: rgb(10, 10, 10);
        line-height: 1.2;  
        width: 526px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    } 
    
    .unterschriftquer {
        font-size: 10.5pt;
        color: rgb(10, 10, 10);
        line-height: 1.2;  
        width: 900px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }      
}

/*
------------------------------------------------------------------------------------------------------------------------
Screen ab 551px bis 924px
------------------------------------------------------------------------------------------------------------------------
*/

@media only screen and (min-width: 551px) and (max-width: 924px) {
    .hoch {
        width: 526px;
        margin-top: 15px;
        display: table;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 5px;
    }
    
    .quer {
        display: block;
        width: 100%;
        margin-top: 15px;
        padding-bottom: 5px;
    }
 
    figcaption {
        font-size: 10.5pt;
        color: rgb(10, 10, 10);
        line-height: 1.2;  
        width: 526px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }  
    
    .unterschriftquer {
        font-size: 10.5pt;
        color: rgb(10, 10, 10);
        line-height: 1.2;  
        display: block;
        width: 100%;
    }   
}

/*
------------------------------------------------------------------------------------------------------------------------
Screen bis 550px
------------------------------------------------------------------------------------------------------------------------
*/

@media only screen and (max-width: 550px) {
    .hoch {
        display: block;
        width: 100%;
        margin-top: 15px;
        padding-bottom: 5px;
    }
    
    .quer {
        display: block;
        width: 100%;
        margin-top: 15px;
        padding-bottom: 5px;
    }
    
    figcaption {
        font-size: 10.5pt;
        color: rgb(10, 10, 10);
        line-height: 1.2;  
        display: block;
        width: 100%;
    }    
}

/*
------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
*/