﻿/***********************************/
/*  CSS Datei fuer die UEMi-Seite  */
/*       D.Schwarze  -  2018       */
/***********************************/

/* Info zur Einheit: vw = 1/100tel der Bildschirmbreite */
/* Info zur Einheit: vh = 1/100tel der Bildschirmhoehe */
/* Info zur Einheit: px = 1 Bildpunkt (Pixel) */

@font-face { 
	font-family: 'Arial';
    src: url('tools/arial.ttf') format('truetype');
}

body {
	margin: 0 auto;
	background-image: url('bilder/back.jpg');
	background-attachment:fixed;
	font-family: 'Arial', arial, sans-serif;
	font-size: 16px;
	line-height:1.5em;
	/*letter-spacing:-0.1em; */
}

.logo {
	text-align: center;
	vertical-align: middle;	
	transform: perspective(1px) translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;
}

.logo:hover,
.logo:focus,
.logo:active {
	transform: scale(1.1);
}

.menue_flaeche:hover,
.menue_flaeche:focus,
.menue_flaeche:active {
	margin-top: 6em;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	display: inline-block;
	position: relative;
	margin: 1.2em 0 1em 0;
	padding: 1em;
	background: #2098D1;
	border: none;
	text-decoration: none;
	font-weight: 70;
	transform: scale(1.2);
	transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);	
}

.tabelle {
	display: table;
	margin-left: auto;
    margin-right: auto;
	width:1024px; 
/*	text-align: center; */
	background-image: url('bilder/back_75.png');
	background-repeat:repeat;
	padding: 10px;
/*	opacity:0.8; */
}

.zeile {
	display: table-row;
}

.zelle {
	display: table-cell;
	padding: 20px 40px;
}

.zellenl {
	display: table-cell;
	width: 3px;
	background-color: #000000;
}

.ueberschrift {
	font-family: 'Arial', arial, sans-serif;
	font-weight: bold;
	text-align: center;
/*	text-decoration:underline; */
	font-size: 34px;
	color: #000000;
	line-height:2.0em;
}

.sub_ueberschrift {
	font-family: 'Arial', arial, sans-serif;
	font-weight: bold;
	text-align: center;
/*	text-decoration:underline; */
	font-size: 18px;
	color: #000000;
	line-height:2.0em;
}


.text {
	font-family: 'Arial', arial, sans-serif;
	color: #000000;
	text-align: left;
	font-weight:normal;
	font-size: 16px;
	line-height:1.9em;
/*	letter-spacing:-0.1em; */
}

.bild {
	text-align: center;
	vertical-align: middle;
/*	width:1024px; */
	margin-left: auto;
    margin-right: auto;
/*	box-shadow: 0px 0px 40px grey; */
}
/*	transform: perspective(1px) translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;

}

.bild:hover,
.bild:focus,
.bild:active {
	transform: scale(1.1);
}
*/

.stand {
	color: #000000;
	font-size: 10px;
	font-weight: bold;
	font-family: "Arial Narrow";
	}

}

.ltext, 
.ltext:a,
.ltext:hover {
	color: #0000ff;
	font-size: 18px;
/*	font-style: italic; */
	font-weight: bold;
}

/* Knopf- Animation */
@keyframes wackel {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
   transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}

.knopf {
  display: inline-block;
  border: 0;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}

.knopf:hover,
.knopf:focus,
.knopf:active {
  animation-name: wackel;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Formatvorlagen fuer Hyperlinks */
a {
	color: #040609;
	font-size: 18px;
	font-family: 'Arial';
	font-style: italic;
	text-decoration: none;
}

a:hover {
	color: #0000ff;
	font-family: 'Arial';
	font-size: bold;
	text-decoration: none;
}