:root
{
	--hauptgruen: rgb(31, 135, 75);
	--hauptgruent: rgba(31, 135, 75, 0.4);
	--hover-clr: #555;
}

*{
	margin: 0;
	padding: 0;
}
html{
	font-family: sans-serif;
	line-height: 1.5rem;
}


body{
	min-height: calc(100vh - 140px);
	display: grid;
	/*background-color: var(--base-clr);*/
	color: var(--hauptgruen);
	grid-template-columns: 300px 1fr;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
	"navbar navbar"
	"sidebar main";
	/*"footer footer";*/
	overflow-x: hidden;
}

.card {
  position: relative;
  width: 175px;
  height: 175px;
  background: lightgrey;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 1s ease-in-out;
  border: 1px solid rgb(31, 135, 75);
}

.cardbackground {
  position: absolute;
  inset: 0;
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.cardlogo {
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  transition: all 0.6s ease-in-out;
  font-size: 0.9em;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 3px;
}

.cardlogo .logo-svg {
  fill: white;
  width: 30px;
  height: 30px;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.icon .cardsvg {
  fill: rgba(255, 255, 255, 0.797);
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.cardbox {
  position: absolute;
  padding: 10px;
  text-align: right;
  background: rgba(255, 255, 255, 0.389);
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 1px solid white;
  border-radius: 10% 13% 42% 0%/10% 12% 75% 0%;
  box-shadow: rgba(100, 100, 111, 0.364) -7px 7px 29px 0px;
  transform-origin: bottom left;
  transition: all 1s ease-in-out;
}

.cardbox::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.cardbox:hover .svg {
  fill: white;
}

.cardbox1 {
  width: 70%;
  height: 70%;
  bottom: -70%;
  left: -70%;
}

.cardbox1::before {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #ff53d4 60%, #62c2fe 90%);
}

.cardbox1:hover::before {
  opacity: 1;
}

.cardbox1:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.cardbox2 {
  width: 50%;
  height: 50%;
  bottom: -50%;
  left: -50%;
  transition-delay: 0.2s;
}

.cardbox2::before {
  background: radial-gradient(circle at 30% 107%, #91e9ff 0%, #00ACEE 90%);
}

.cardbox2:hover::before {
  opacity: 1;
}

.cardbox2:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.cardbox3 {
  width: 30%;
  height: 30%;
  bottom: -30%;
  left: -30%;
  transition-delay: 0.4s;
}

.cardbox3::before {
  background: radial-gradient(circle at 30% 107%, #969fff 0%, #b349ff 90%);
}

.cardbox3:hover::before {
  opacity: 1;
}

.cardbox3:hover .icon .svg {
  filter: drop-shadow(0 0 5px white);
}

.cardbox4 {
  width: 10%;
  height: 10%;
  bottom: -10%;
  left: -10%;
  transition-delay: 0.6s;
}

.card:hover {
  translate: 10px, 0px;
}

.card:hover .box {
  bottom: -1px;
  left: -1px;
}

.card:hover .logo {
  transform: translate(70px, -52px);
  letter-spacing: 0px;
}


#toggle-btn{
		display: none;
	}
nav{
	grid-area: navbar;
	top: 0;
	position: sticky;
	background-color: rgb(144, 169, 189);
	-webkit-box-shadow: 3px 3px 2px 0 rgba(0,0,0,0.5) inset;
	box-shadow: 3px 3px 2px 0 rgba(0,0,0,0.5) inset;
	z-index: 1;
}


aside{
	height: calc(100vh - 100px);
	top: 135px;
	position: fixed;
	align-self: start;
	grid-area: sidebar;
	padding-top: 200;
	border-right: 3px solid var(--hauptgruen);	
	background: linear-gradient(0deg, rgba(255,255,255,0) 70%, rgba(195,142,166,1) 100%), linear-gradient(220deg, rgba(255,255,255,0) 0%, rgb(200, 215, 227) 50%);
	
	a:link{
		color:#333333;
		text-decoration: none;
		svg{
			fill: transparent;
		}
		}
	a:visited {
		color: #333333;
		text-decoration: none;
		svg{
			fill: transparent;
		}
		}
	a:hover {
		color: var(--hauptgruen);
		filter: drop-shadow( 5px 5px 5px rgba(0, 0, 0, .5));
		svg{
			fill: var(--hauptgruen);
		}
		}
	a:active {
		color:#000000;
		text-decoration: none;
		}
	z-index: 0;
}

.mi{
	display: inline-block;
	vertical-align: middle;
	}
	
#sidebar{
	padding-top: 40px;
	padding-right: 20px;
}
main{
	grid-area: main;
	background: -webkit-linear-gradient(-60deg, #ffffff 0, #c8d7e3 77%, #c8d7e3 100%);
    background: linear-gradient(150deg, #ffffff 0, #c8d7e3 77%, #c8d7e3 100%);
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
	-webkit-box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.1) inset;
	box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.1) inset;
	padding-top: 50px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 80px;
	min-height: calc(100vh - 150px);
	line-height: 120%;
	p, pre
		{
		padding: 10px;
		margin:0;
		}
	pre, code { font-size: 1.2em;}


	h1 {
		padding: 10px;
		margin:0;
		line-height: 150%;
		text-align: center;
		letter-spacing: -1px;
		word-spacing: -2px;
	}
	h2 {
		padding: 10px;
		margin:0;
	}
}

footer{
	height: 30px;
	font-size: 0.8em;
	color:#333333;
	text-align: center;
	border-top: 2px solid var(--hauptgruent);
	border-bottom: 2px solid var(--hauptgruent);
	backdrop-filter: blur(12px);
	position: fixed;
	/*top: calc(100dvh - 50px);*/
	bottom: 20px;
	z-index:2;
	filter: drop-shadow( 5px 5px 5px rgba(0, 0, 0, .5));
	padding: 0;
	margin: 0 auto;
	margin: 0 ;
	width: 100vw;
	animation: boxanim 1s ease-in-out 1 forwards;
	a {
		color:#49707c;}
	i {
		font-size: 0.8em;
		color:#333333;
	}
}

.mediaq{
	display: block;
	img {
		border-radius: 10px;
		margin: 10px;
		box-shadow: 3px 3px 8px #818181;
	}
}
.container{
	max-width: 660px;
}
.medianq{
	display: none;
	img {
		border-radius: 10px;
		margin: 10px;
		box-shadow: 3px 3px 8px #818181;
	}
}

#year{
	position:absolute;
	top:45px;
	left: 420px;
	z-index:3;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 64px;
	color: #000000;
	font-weight: 700;
	text-decoration: none;
	-moz-transform: rotate(346deg) skew(-11deg, 0deg);
	-webkit-transform: rotate(346deg) skew(-11deg, 0deg);
	-o-transform: rotate(346deg) skew(-11deg, 0deg);
	-ms-transform: rotate(346deg) skew(-11deg, 0deg);
	transform: rotate(346deg) skew(-11deg, 0deg);
	color: transparent;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	text-shadow: 0px 3px 3px rgba(255,255,255,0.5);
	color: #FFFFFF;
	text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px, #5230ce 0px 0px 20px, #5230ce 0px 0px 30px, #5230ce 0px 0px 40px, #5230ce 0px 0px 50px, #5230ce 0px 0px 75px;
	animation: boxanim 2s 1s ease-in-out 1 backwards;
}

.imgcon{
	padding: 0px;
	margin: 0px;
}

@media(max-width: 800px){
	body{
		grid-template-columns: 100vw;
		grid-template-areas:
		"navbar"
		"main"
		"footer"
	}
	aside{
		position: fixed;
		width: 300px;
		height: auto;
		display: none;
		background: linear-gradient(150deg, #ffffff 0, #c8d7e3 77%, #c8d7e3 100%);
		border: 1px solid var(--hauptgruen);
		border-radius: 20px;
		box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.5);
			z-index: 1;
	}
	#sidebar{
		padding-top: 10px;
	}
	.show{
		display: block;
	}
	#toggle-btn{
		width: 30px;
		height: 30px;
		display: block;
		position: sticky;
		color: var(--hauptgruen);
		background: transparent;
		top: 10px;
		left: 10px;
		border: 3px solid var(--hauptgruen);
		border-radius: 15px;
		box-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px, #5230ce 0px 0px 20px, #5230ce 0px 0px 30px, #5230ce 0px 0px 40px, #5230ce 0px 0px 50px, #5230ce 0px 0px 75px;
		animation: boxanim 1s ease-in-out 1 backwards;
		svg{
			fill: var(--hauptgruen);
		}
	}
	#logo
		{
		 transform: scale(0.7);
		}
	.imgage{
		 transform: scale(0.5);
		}
	.mediaq{
	display: inline;
	}
	.mediaq img {
	width: 95%;	
	}
	.medianq{
	display: none;
	}
	#year{
		position:absolute;
		top:45px;
		left: calc(100vw / 2);
		z-index:2;
		font-size: 64px;
	}
	#status {
	p{
	display: none;
	}
	}
}

#text{
	 text-align: justify;
}


/* ----------banner for logo-------------- */
#banner {
	margin: 0;

	margin-left: 0;
	margin-right: 0;
	padding: 0;
	top:0;
	height:135px;
	width: 100vw;
	background-color: rgb(144, 169, 189);
	background-image:url(../pics/header.jpg);
	background-repeat: no-repeat;
	-webkit-box-shadow: 3px 3px 2px 0 rgba(0,0,0,0.5) inset;
	box-shadow: 3px 3px 2px 0 rgba(0,0,0,0.5) inset;
}
#banner p {
	margin-left: 0em;
	padding: 0px;
}
#status {
	margin: 0;
	padding: 0;
	height: 34px;
	width: 100vw;
	color: #333333;
	border-top: 2px solid var(--hauptgruent);
	border-bottom: 2px solid var(--hauptgruent);
	backdrop-filter: blur(12px);
	position:absolute; top:120px; z-index:2;
	filter: drop-shadow( 5px 5px 5px rgba(0, 0, 0, .5));

	animation: boxanim 1s ease-in-out 1 forwards;
}
@keyframes boxanim{
    0%{
      opacity: 0;
    }
    10%{
	    opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }

#status p{
	position: sticky;
	margin-left: 15em;
	padding: 0 10px;
}

#status a{
  //color: #d1cdc9;
  font-weight: bold;
  text-decoration: none;
}

#logo {
	margin: 0;
	padding: 0;
	position: sticky;
	height:102px;
	width:420px;
	background-image:url(../pics/logo_website.png);
	background-repeat:no-repeat;
  position:absolute;
  top:65px;
  z-index:3;
}


.textarea {
  width:390px;
}	
.datum{
  color:#990000;
  font-size:15px;
  font-family:Arial,sans-serif;
  border: 1px solid #aaaaaa;
  background-color:#eeeeee;
  height:10px;
  width:20px;
 	}	
	
.headline{
  color:#990000;
  font-size:15px;
  font-family:Arial,sans-serif;
  border: 1px solid #aaaaaa;
  background-color:#eeeeee;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.5);
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.5);
  height:30px;
  width:390px;
  padding:3px;
	}	
	
	
	
#plakat{
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid var(--hauptgruen);
	border-radius: 10px;
	filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .5));
	/*backdrop-filter: blur(12px);*/
	background-color: #fff;
	animation: scrolling linear;
	animation-timeline: view();
	animation-range: entry 0% cover 20%;
	padding: 0px;
	margin-bottom: 15px;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	}

.aktuell{
	border: 1px solid var(--hauptgruen);
	border-radius: 10px;
	max-width: 600px;
	filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .5));
	/*backdrop-filter: blur(12px);*/
	background-color: #fff;
	animation: scrolling linear;
	animation-timeline: view();
	animation-range: entry 0% cover 20%;
	padding: 10px;
	margin-bottom: 25px;
	img {
		border-radius: 10px;
		margin: 10px;
		box-shadow: 3px 3px 8px #818181;
	}
}

.bus{
	border: 1px solid var(--hauptgruen);
	border-radius: 10px;
	filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .5));
	/*backdrop-filter: blur(12px);*/
	background-color: #fff;
	animation: scrolling linear;
	animation-timeline: view();
	animation-range: entry 0% cover 20%;
	padding: 10px;
	margin-bottom: 25px;
	ul {
		padding-left: 30px;	
	}
	li {
		padding-top: 15px;
	}
}
	
	@keyframes scrolling {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0px);
	}
		
	}
	
	
.endtext{
	display: block;
}
	
.termintext{
	text-align: justify;
	padding-left: 60px;
}
.tagesprogrammheadline{
	margin: 0px;
	border-bottom: 1px solid var(--hauptgruent);
	margin-bottom: 20px;
	padding: 0px;
	vertical-align: baseline;
	text-align: left;
	width:100%;
	border-bottom: solid thin grey;
	background: linear-gradient(0deg, rgba(249, 249, 249,1)) 70%, rgba(249, 249, 249,0) 100%);
}
	
	
/*----------Bilder-----------------*/
 
 /*shadow for CSS3 capable browsers.*/
.stickytooltip{
box-shadow: 5px 5px 8px #818181;
-webkit-box-shadow: 5px 5px 8px #818181;
-moz-box-shadow: 5px 5px 8px #818181;
display:none;
position:absolute;
display:none;
border:1px solid black; /*Border around tooltip*/
background:white;
z-index:3000;
}


/*Style for footer bar within tooltip*/
.stickytooltip .stickystatus{
background:black;
color:white;
padding-top:5px;
text-align:center;
font:bold 11px Arial;
}

.btn-logout{
	margin-top: 20px;
	position: relative;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	width: 15rem;
	border-radius: 50px;
	font-weight: 600;
	backdrop-filter: blur(12px);
	background: transparent;
	border: 2px solid var(--hauptgruen);
	color: var(--hauptgruen);
	cursor: pointer;
	overflow: hidden;
	transition: 0.75s;
	z-index: 2;
}



.btn-logout:hover{
	color: #000;
	font-size: 1.5rem;
	box-shadow: 0 0 1px var(--hauptgruen), 0 0 50px var(--hauptgruen);
}

.form{
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputField{
    position: relative;
}

.inputField input{
    width: 22rem;
    height: 3.5rem;
    border-radius: 10px;
    font-size: 18px;
    padding: 0 1rem;
    border: 2px solid var(--hauptgruent);
    background: transparent;
    outline: none;
    color: #000;
}

.inputField label{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--hauptgruen);
    font-size: 1.1rem;
    pointer-events: none;
    transition: 0.3s;
}

input:focus, input:user-valid{
    border: 2px solid var(--hauptgruen);
}

input:focus ~ label, input:user-valid ~ label{
    top: 0;
    font-size: 0.9rem;
    padding: 0 10px;
    backdrop-filter: blur(3px);
	border: 1px solid var(--hauptgruen);
	border-radius: 5px;
    color: var(--hauptgruen);
}

hr {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-style: solid;
	width: 80%;
	text-align: center;
	color:var(--hauptgruen);
	background-color:var(--hauptgruen);
}