* {
	font-family: 'Cousine';
	font-size: 20px;
  	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-decoration: none;
	overflow: hidden;
	line-height: 1.3em;
}

h1 {
	font-size: 1em;
	font-style: light;
}

a {
	transition: color 0.3s ease;
	padding: 2px;
	font-weight: bold;
	color: inherit;
}

a:hover {
	transition: color 1s ease;
	/* box-shadow: 2px 2px 2px ; */
	background: white;
	// color: #6900ff;
	/* color: white;
	background-color: black; */
}

.overlayLink {
	cursor: pointer;
}

.blink {
	animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.what {
	cursor: help;
}

.right {
	cursor: pointer;
}

#container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	bottom: 0;
	z-index: -999;
}

.row {
/*
	position: absolute;
	top: 0;
*/

	background-color: rgba(0);
/*
    content: "";
    clear: both;
    display: block;
*/
}

body {
	background: white;
/* 	background: #949494; */
/*
	background: linear-gradient(to bottom, #fffbd1 1%,#005e63 100%);
	background: #2b66c9;
*/
	height: 100vh;
}

.spacer { height: 1px; }

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="overlay-"]{
	display: none;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(30, 30, 30, 0.9);
	z-index: 2;
}

.overlays{
	display: none;
	left: 0;
	top: 0;
	width: 100%;
	height:100%;
	z-index: 2;
	background-color: rgba(30, 30, 30, 0.9);
	overflow-y: scroll;
}

.footer {
   position: fixed;
   bottom: 0;
   width: 100%;
   z-index: 1;
}

.imprint{
	font-size: smaller;
	background: transparent;
	background-color: transparent;
}

.tool {
    position: absolute;
    display: none;
    background: white;
    /* color: #6900ff; */
    padding: 2px;
}

div.teaser {
	display: none;
    position: absolute;
    width: 320px;
    height: 180px;
    z-index: 99;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

::selection{
	color: #72ffaa;
/* 	color: #ff6900; */
}

@media (max-width: 650px) {
	* {
		overflow: auto;
	}
	
	.what {
		display: none;
	}
	
	.imprint {
		display: none;
	}
	
	[class*="col-"] {
		display: block;
		width: 100%;
	    float: left;
	    z-index: 1;
	}
		
	#container{
		width: 100%;
		display: block;
	}
}


@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.3;
    }
}

@-webkit-keyframes hue {
    from {
      -webkit-filter: hue-rotate(0deg);
    }

    to {
      -webkit-filter: hue-rotate(360deg);
    }
}
