/*
	--------------------------------------------------------
	Erstellt von:
	Homepage Erstellung & Programmierung
	Thomas Hoffmann
	www.hofe-net.de
	info@hofe-net.de
	-------------------------------------------------------
*/

*{
    margin: 0;
    padding: 0;
    border: 0;
}

/* Bildschirm auf 100% setzen*/
html , body
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}


/* Grundversion für ältere Browser und Desktop/Laptop*/
/* Querformar */
/* @media (orientation: landscape) */

body
{
    overflow: hidden;
    background-image: url(background.jpg);
    background-position: right top;
    background-attachment:fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

#logo1-img
{
    min-width: 100px;
    max-width: 500px;
    width: 25%;

    max-height: 20%;

    margin-top: 10%;
    margin-left: 5%;
}

#logo2-img
{
    min-width: 100px;
    max-width: 500px;
    width: 25%;

    max-height: 20%;

    margin-top: 10%;
    margin-left: 5%;
    margin-right: 30%;
}

#Impressum-Text
{
    display: inline-block;
    width: 55%;
    padding: 10px;
    background-color: rgba(255,255,255,0.9);
    color: #000000;
    margin-top: 5%;
    margin-left: 5%;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;

}


/* Hochformat */
@media (orientation: portrait)
{
    body
    {

        overflow: hidden;
        background-image: url(background-mobil.jpg);
	    background-position: right top;
	    background-attachment:fixed;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #logo1-img
    {
        min-width: 100px;
        max-width: 600px;
        width: 80%;

        min-height: 33%;

        margin-top: 5%;
        margin-left: 5%;
    }

    #logo2-img
    {
        min-width: 100px;
        max-width: 600px;
        width: 80%;

        max-height: 33%;

        margin-top: 5%;
        margin-left: 5%;

    }

    #Impressum-Text
    {
        display: inline-block;
        width: 85%;
        padding: 10px;
        background-color: rgba(255,255,255,0.9);

        color: #000000;
        margin-top: 5%;
        margin-left: 5%;
        margin-right: 5%;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px;
    }

}

#link-impressum ,#link-home 
{
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 1.5em;
    color: #FFFFFF;
    background-color: rgba(0,0,0,0.8);
    padding: 5px;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

}



/* Schrift verkleinern wenn Bildschirm höhe zu klein */
@media (max-height: 400px)
{

    #Impressum-Text h1
    {
        font-size: 1em;
    }

    #Impressum-Text h2
    {
        font-size: .75em;
    }

    #Impressum-Text p
    {
        font-size: .65em;
    }
    #link-home , #link-impressum
    {
        font-size: 1em;        
    }


}