/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
//	Das Dokument "style.css" bindet alle cssDateien ein und beinhaltet das Farbverzeichnis der Website.
//  
//  	Inhalt:
//			- CSS-Importe
//			- Main-Settings
//
//		Farbverzeichnis:
//			- Rot: #df2323;
//			- grau: #aaaaaa;
//  
//  INFO: 
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/

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

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

/* 
=== Fonts ===
*/

@media screen {

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

}

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

}

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

}

}

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;
}

/* 
=== Fonts and  ===
*/

h1, h2, h3, p, a {
	color: #ffffff;
}

h1 {
	padding: 24px;
	font-size: 2.5em;
	font-family: 'cubano', Arial, Helvetica, sans-serif;
}

h2 {
	padding: 24px;
	font-size: 2.25em;
	font-family: 'cubano', Arial, Helvetica, sans-serif;
}

h3 {
	padding: 12px;
	color: #df2323;
	font-size: 0.75em;
	text-align: left;
	font-family: 'raleway-regular', Arial, Helvetica, sans-serif;
}

h3 span {
	display: block;
	color: #aaaaaa;
}

.head {
	display: block;
	margin-top: -24px;
	margin-bottom: 24px;
	color: #ffffff;
	font-size: 2em;
	text-align: center;
	font-family: 'raleway-italic', Arial, Helvetica, sans-serif;
}

a {
	color: #ffffff;
	text-decoration: none;
}

p, a {
	font-size: 1.25em;
	font-family: 'raleway-regular', Arial, Helvetica, sans-serif;
}

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

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

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

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

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