.mainStyle{
    color: white;
    background-color: #666666;
    /*background-color: #1a1a1a;*/
    word-break: break-all;
    white-space: normal;
    align-content: center;
    font-family: "PT Sans Narrow";
    margin: 0; 
    padding: 0;
}




/*Stuff*/
.spacer {
    width: 100%;
    background-color: #1e1e1e;
    height: 40px;
}
.spacer-line {
    border-top-style: solid;
    border-top-color: white;
    border-top-width: 2px;
}

/*Stuff Ende*/


/*Header*/
.headerStyle{
    text-align: center;
    padding: 1em;
    margin: 0px;
}

.header {
    width: 100%; 
    background-color: #1e1e1e;
}

.logo {
    float: left;
    margin: 5pt;
    max-width: 300px;
    height: auto;
}

/*Scaling of the Logo*/
@media screen and (max-width: 600px) {
    .logo{
        width: 70%;
    }
    nav{
        margin: 0px;
        min-width: 10px;
    }   
}

    /*Navbar*/
    nav{
        margin: 0 20px 0 0;
    }

    .topnav {
        background-color: #1e1e1e;
        text-align: right;
        overflow: hidden;
        margin: 0;
        padding: 16 0;
    }
    .topnav a {
        display: inline-block;
        color: white;
        text-align: right;
        padding: 6pt 16pt;
        text-decoration: none;
        font-size: 16pt;
        margin: 0;
        position: relative;
    }
    .topnav_current {
        color: white;
        /* background-color: #a0a0a0; /*gray*/
		background-color: #ff8200ff; /*orange*/
        /* background-color: #0066ff; /*blue*/
    }

    .topnav a:hover {
        color: white;
		background-color: #ff8200ff; /*orange*/
        /* background-color: #0066ff; /*blue*/
    }

    .topnav .icon {
        display: none;
        font-size: 16pt;
    }

    @media screen and (max-width: 790px) {
        .topnav a {
            display: none;
        }
        .topnav a.icon {
            float: right;
            display: block;
        }
        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        } 
    }

    @media screen and (max-width: 790px) {
        .topnav a{
        }
        .topnav.responsive {
            position: relative;
            min-width: 180px;
        }
        .topnav.responsive a.icon {
            position: absolute;
            font-size: 14pt;
            right: 0;
            top: 0;
            padding-bottom: -10pt;
            border-style: solid;
            border-width: 1px;
            border-color: white;
        }
        .topnav.responsive a {
            float: none;
            display: block;
            text-align: center;
        }
    }

    
    /*Navbar Ende*/

/*Header Ende*/


.image_panel {
    width: 100%
}

.panel {
    margin: auto;
    font-size: 18pt;
    width: 100%;
}

.panel_text {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 16pt;
}

    .img1_panel {
        background-image: url(Images/home/orange/orange_Smarthome.svg);

        height: 100%;
        width: 25%;
        background-size: contain;
        float: left;
        position: relative;
    }

    .img2_panel {
        background-image: url(Images/home/orange/orange_Fileserver.svg);

        height: 100%;
        width: 25%;
        background-size: contain;
        float: left;
        position: relative;
    }

    .img3_panel {
        background-image: url(Images/home/orange/orange_Platzhalter.svg);

        height: 100%;
        width: 25%;
        background-size: contain;
        float: left;
        position: relative;
    }

    .img4_panel {
        background-image: url(Images/home/orange/orange_Email.svg);

        height: 100%;
        width: 25%;
        background-size: contain;
        float: left;
        position: relative;
    }


/*Content*/
.content_Field {
    max-width: 800px;
    margin: auto;
}

.content_text {
    margin: auto;
    align-self: center;
    background-color: white;
    color: black;
    padding: 15px;
	word-break: normal;
}

/*Content Ende*/




.impressum_panel {
	background-image: url(Images/panel_impressum_blue.png);
	background-size: cover;
}

.img_impressum_panel {
	background-image: url(Images/panel_impressum_blue.png);
    
    height: 100%;
    width: 100%;
    background-size: contain;
    float: left;
    color: white;
    text-decoration: none;
    font-size: 20pt;
    position: relative;
}





/*Werkzeugkiste:*/

/*Beautifil way to keep aspect ratio*/
.box{
	position: relative;
	width: 100%;		/* desired width */
}
.box:before{
	content: "";
	display: block;
	padding-top: 25%; 	/* initial ratio of 1:1*/
}
.content{
	position:  absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;    
    text-align: center;
}