/* ====================================================  GLOBAL DEFINITION  ==================================================== */


@font-face {
	font-family: ITCAvantgarde; 
	src: url(../font/ITC_Avant_Garde_Gothic_LT_Book_Regular.otf);
}


body {
  margin: 0;
  padding: 0;
  font-family: ITCAvantgarde, 'Calibri light';
  color: #706f6f; 
}

/* ====================================================  HEADER  ==================================================== */

header #logo {
	text-shadow: none; 
	background-size: contain;
	width: 2em;
	height: 2em;
}

header #logo img {
	width: 350px;
}

header h1 {
	text-align:right;
}



a {
  color: #0097d8;
  transition: all 0.3s ease;
}
a:focus, 
a:hover, 
a:active {
  color:#595b5a;
}


[title] {
  cursor: help;
}
a [title],
a[title] {
  cursor: pointer;
}

table {
  margin: 15px 0;
  border: 1px solid #355E64;
  border-collapse: collapse;
}

/* Eingabefelder */
input[type="text"] {
  padding: 8px;   
  width:90%;
  font-size:.9em;
  border: 1px solid #DDDDDD;
  background: linear-gradient(#FFFFFF, #EEEEEE);
  border-radius: 3px;
  box-shadow: 0 0 2px #DDDDDD;
}
input[type="text"]:hover {
  border:1px solid #cccccc;
}
input[type="text"]:focus {
  box-shadow:0 0 2px #FFFE00;
}
input[type="submit"] {
  padding: 5px 10px;
  color: #fff;
  cursor: pointer;
  font: italic bold 1em/1.2 Georgia, "Times New Roman ", Times, Cambria, "Nimbus Roman No9 L ", serif;
  border: 1px solid #e35061;
  background: #c50a1f;
  border-radius: 3px;
}
input:hover[type="submit"] {
  border-color:#999;
}

		
   



/* ------------------------ Layout ---------------------------------*/  
header {		
	display: grid;
	grid-template-columns: 1fr [main-links] 8em [nav-end] minmax(10em, 75em) [main-rechts] 1fr;
	color: white;
}

header h1 {
	grid-column: nav-end / main-rechts;
}

h2 {
   letter-spacing: 0.1em;
   word-spacing: 0.5em;
   text-transform: uppercase;
}

h3 {
   letter-spacing: 0.1em;
   word-spacing: 0.5em;
   text-transform: uppercase;
}

  /* main */
main,
footer {
  max-width: 75em;
  padding: 2em;
  margin: 0 auto;
} 

main {
  background:#fefefe;
} 

main img {
	max-width: 300px;
	padding-bottom: 20px; 
}

main p {
		max-width: 300px;
		text-align: justify;
		
}

#index main {
  margin-top: -2em;
}


@media only screen and (min-width: 40em) {
	main,
	footer {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}


@media only screen and (min-width: 60em) {
	main,
	footer {
		grid-template-columns: repeat(3, 1fr);
	}
}


 
/* Drucklayout  */
@media print {

}/*   print ends */


/* Layout für Text Impressumg und Datenschutz */
#imp_ds_text {
	margin: 30px; 
	text-align: justify;
	
}