/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
//	Das Dokument "style.css" bindet alle cssDateien ein und beinhaltet das Farbverzeichnis der Website.
//  
//  	Inhalt:
//			- CSS-Importe
//			- Main-Settings
//
//		Farbverzeichnis:
//			- schwarz: #000000;
//			- pink: #FF2A99;
//			- blau: #617bad;
//			- grau: #282828;
//			- grün: #65A752;
//  
//  INFO: 
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

/* 
==========================================
=	CSS-Importe
==========================================
*/

@import url("css/header.css");
@import url("css/index.css");
@import url("css/footer.css");
@import url("css/setcard.css");
@import url("search/css/suche.css");
@import url("signup/css/signup.css");

/* 
=== Fonts ===
*/

@media screen {

/*Title*/
@font-face {
    font-family: 'leaguegothic';
    src: url('fonts/leaguegothic.eot');
    src: url('fonts/leaguegothic.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic.woff2') format('woff2'),
         url('fonts/leaguegothic.woff') format('woff'),
         url('fonts/leaguegothic.ttf') format('truetype'),
         url('fonts/leaguegothic.svg#leaguegothic') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Sub-Title*/
@font-face {
    font-family: 'leaguegothic-italic-webfont';
    src: url('fonts/leaguegothic-italic-webfont.eot');
    src: url('fonts/leaguegothic-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic-italic-webfont.woff2') format('woff2'),
         url('fonts/leaguegothic-italic-webfont.woff') format('woff'),
         url('fonts/leaguegothic-italic-webfont.ttf') format('truetype'),
         url('fonts/leaguegothic-italic-webfont.svg#leaguegothic-italic-webfont') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Text*/
@font-face {
    font-family: 'archivonarrow';
    src: url('fonts/archivonarrow.eot');
    src: url('fonts/archivonarrow.eot?#iefix') format('embedded-opentype'),
         url('fonts/archivonarrow.woff2') format('woff2'),
         url('fonts/archivonarrow.woff') format('woff'),
         url('fonts/archivonarrow.ttf') format('truetype'),
         url('fonts/archivonarrow.svg#archivonarrow') format('svg');
    font-weight: normal;
    font-style: normal;

}

}

/* 
==========================================
=	Main-Setting
==========================================
*/

html {
	-webkit-font-smoothing: subpixel-antialiased;
} 

* {
    margin: 0em;
    padding: 0em;
	list-style: none;
    border: 0em;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 1em;
	line-height: 1em;
    font-family: inherit;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* 
=== Font-Setting ===
*/

h1, h2, h3, p, a, li {
}

h1 {
	padding: 75px 24px 0px 24px;
	color: #ffffff;
	font-family: 'leaguegothic', Arial, Helvetica, sans-serif;
	font-size: 3em;
	text-align: left;
	
}

h2 {
	padding: 24px 24px 20px 24px;
	color: #ffffff;
	font-family: 'leaguegothic-italic-webfont', Arial, Helvetica, sans-serif;
	font-size: 2em;
	text-align: left;
}

h3 {
	padding: 12px 5%;
	font-family: 'archivonarrow', Arial, Helvetica, sans-serif;
	font-size: 1.25em;
	line-height: 1.25em;
}

p, a, li {
	font-family: 'archivonarrow', Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.25em;
}

p {
}

a {
	color: #FF2A99;
	text-decoration: none;
	transition: 0.25s ease-in-out;
}

/* 
==========================================
=	Global Settings
==========================================
*/

.hidden {
	display: none;
}

body{
	margin: 0 auto;
	background-color: #282828;
}

#base {
	margin: 0 auto;
	width: 100%;
	max-width: 1600px;
	height: auto;
	background-color: #000000;
	text-align: center;
}

.btn {
	margin-top: 18px;
	padding: 12px;
	width: 100%;
	color: #ffffff;
	background-color: #65A752;
	border: 1px solid #65A752;
	font-family: 'archivonarrow', Arial, Helvetica, sans-serif;
	border-radius: 5px;
	transition: 0.25s ease-in-out;
}

.btn:hover, .btn:active {
	background-color: #617bad;
	border: 1px solid #617bad;
	cursor: pointer;
	transition: 0.25s ease-in-out;
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Definition of Responsive-Design-Elements 
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

@media screen and (max-width: 350px) { 

#overlayRegister h2 {
	display: block;
}

#overlayRegister h3 {
	display: none;
}

.buttonSubmit {
	margin-top: 50px;
}

}

@media screen and (min-width: 920px) { 

#bannerContainer {
	display: inline-block;
	width: 724px;
	height: auto;
	margin-top: 25px;
    vertical-align: top;
}

/* Nur Firefox */
@-moz-document url-prefix() {
	
	#bannerBox {
		margin: 25px 0 30px 0;
	}
	
}

#bannerBox {
	display: block;
	margin-top: 0;
}

#bannerBox h1 {
	font-size: 6.6em;
} 

#bannerBox h2 {
	font-size: 3em;
} 

}