/* CSS Document INDEX */
@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  
  margin: 0; padding: 0;
}

a img { border:0px; }

button, object, a { outline: none; }

pre {
	margin: 10px auto;
	padding: 0.5em;
	max-width: 800px;
	white-space: pre-wrap;
	background: rgba(255,255,255,0.5);
}

/* /////////// HTML //////////// */
html, body  {
	min-height: 100vh;
	margin: 0;
	padding: 0;
  }

body {
	font-family: "Century Gothic", "Trebuchet MS", Helvetica, Arial, Verdana sans-serif;
	z-index: 2;
	color: #333;
	background-color:#efefef;
}

img{-ms-interpolation-mode:bicubic;}

h1, h2, h3, h4, p {margin: 0.5em 0 0.5em 0; padding: 0 2%; line-height: 1.6em; font-size: 1.0em; }
h1, h2, h3, h4 {font-size: 1.6em;}
h2, h3, h4 {font-size: 1.4em;}
p, a {font-size: inherit;}

a, a:link, a:active, a:visited  {color: #cc0000; color: #000; text-decoration: none; cursor: pointer;

	-webkit-transition: color .25s ease-out;
	-moz-transition: color .25s ease-out;
	-o-transition: color .25s ease-out;
	transition: color .25s ease-out;

}
a:hover {color: #555; text-decoration: none;}
a:focus, div:focus { outline: none; -moz-outline-style:none; }

/* /////////////////////// DIV ///////////////////////////// */

#page-wrap {
	position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	margin: 0 .5rem;
	padding: 0;
	z-index: 3;
	border-radius: 1.5rem;
	background-color: rgba(250,250,250,0);
	background-image: url(../userfiles/images/img_pattern/bg_dot_3x3_black.png);
	background-image: url(../userfiles/images/img_pattern/bg_line_diagonal.png);
	background-clip: border-box;
}


/* //////// main /////// */

header, footer {
	display: flex;	
	justify-content:center;
	align-items:center;
	margin: 0; 
	padding: .5em;
	background: rgba(0,0,0,.1);	
}

/* //////// main /////// */

main {
	display: flex;
	justify-content:center;
	align-items:center; 
	flex: 1 0 auto;	
	background: rgba(90,90,90,.1);	
}

/* //////// main #content /////// */
#content {
	position: relative;
	margin: .5rem;
	padding: .5em;
	min-width: 400px;
	max-width: 768px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: .5rem;
	border: 0px solid rgba(0,0,0,.8);
	background: rgba(239,239,239,.6);
	-webkit-box-shadow: 6px 8px 10px 1px rgba(0,0,0,0.3); 
	box-shadow: 6px 8px 10px 1px rgba(0,0,0,0.3);
}

/* /////////////// footer /////////////// */
footer { flex-shrink: 0; }


/* /////////////// DIVERSES /////////////// */

.text-center { text-align: center; }

a.websteil {
	position: relative;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	padding: 2px 6px;
	letter-spacing: .05rem;
	color: #111 !important;
}
a.websteil::after {
	position: absolute;
	top: 0;
	right: 4px;
	content: '';
	z-index: -1;
	height: 100%;
	width: 0;
	transition: all .5s ease;
	background: transparent;	
}
a:hover.websteil { color: #333 !important; }
a:hover.websteil::after { width: 46.4%; background: #9999cc; }


/* ///////////////////// Full BG /////////////// */

/* CSS 3 */
#full_div_bg {
	position: absolute;
	/**/ position: fixed; 
	top: 0;
	left: 0;
	width:100%;
	min-height: 100%;
	max-width: 100%;
	
	background: transparent no-repeat center center fixed;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	
	z-index: 1;

}

/* Bild BG faerben // https://www.w3schools.com/cssref/pr_background-blend-mode.asp */
#full_div_bg {
	background-blend-mode: multiply;
	background-color: red;
	background-color: #9999cc;

}


/* IE 6 7 8 per PHP browseweiche.php*/
img.full_bg {
	min-height: 100%;        /*  bg fuellen  */
	min-width: 1024px;
	width: 100%;             /*  bg Skalierung */
	height: auto;
	position: fixed;         /*  bg Positionierung  */
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
}

@media screen and (max-width: 1024px) {
	img.full_bg{
	left: 50%;
	margin-left: -512px;
	}
}

* html img#full_bg { 
	width: 100%;
	height:99.99%; /* IE6 Hack */
	position: absolute;	
}
