/* This CSS file is part of the HTML5 / CSS3 tutorial on http://www.lingulo.com */

/* GLOBAL */
html{
      position:relative;
      top:0px;
      padding:0px;
      height:100%;

}
body { display:block;
	position: relative;
        font-family: 'Comic Sans MS', cursive;
	font-size:20px;
	margin-left:40px;
	margin-right:40px;
	top: 300px;
        height: 100%

      }	
#container {
	    min-height:100%;
            position:relative;
           }
/* HEADER */
body p { left:40px;}

header
{
        position:fixed;
	z-index:99;
	background-color:white;
        width:100%;
	left:5px;
	top:0px;
        max-width:100%;
        margin: 0 0 0 0;
}

header h1
{
        margin:35px 0 0 0;
        font-size:55px;
        color:#e56038;
        font-family: 'Comic Sans MS', cursive;
}
header h2
{
        margin:35px 0 0 0;
        font-size:35px;
        color:#e56038;
        font-family: 'Comic Sans MS', cursive;
}
header h3
{
        margin:35px 0 0 0;
        font-size:15px;
        color:#e56038;
        font-family: 'Comic Sans MS', cursive;
}

header p
{
        font-family: 'Comic Sans MS', cursive;
        font-size:24px;
        color:#99284c;
        margin-left:10px;
}

footer {
        position:fixed;
	bottom:0;
	left:0;
	right:0;
	height:30px;
       
       width:100%;
       background:#6cf;
       }
#maky {
       position: fixed;
       left:700px;
       top:20px;
      }
#uberschrift {
       position: fixed;
       left:180px;
       top:0px;
      }
#student{
	position: relative;
        font-family: 'arial';
	font-size:15px;
	margin-right:40px;
	margin-left:40px;

}      
/* Effect 2: 3D rolling links, idea from http://hakim.se/thoughts/rolling-links */
.cl-effect-2 a {
	line-height: 44px;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
}

.cl-effect-2 a span {
	position: relative;
	display: inline-block;
	border: 1px solid white;
	text-align: center;
	padding: 0 14px;
	width: 120px;
	background: #2195de;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.csstransforms3d .cl-effect-2 a span::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 148px;
	height: 100%;
	background: #0965a0;
	content: attr(data-hover);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

.cl-effect-2 a:hover span,
.cl-effect-2 a:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
}

.csstransforms3d .cl-effect-2 a:hover span::before,
.csstransforms3d .cl-effect-2 a:focus span::before {
	background: #8ebfc5;	
}


