:root
{
	--hauptgruen: rgb(31, 135, 75);
	--hauptgruent: rgba(31, 135, 75, 0.4);
}

*{
	box sizing: box-border;
	font-family: sans-serif;
}
body {
    margin: 0;
    /*background-color: #555;*/
    color: #000;
  	inset: 0;
	background-color: #555;
	/*background-image: url(../pics/introbg_nc.jpg);
    background-size: cover;
    background-position: center;*/
}

a {
	fnt-size: 3rem;
	color: var(--hauptgruen);
	filter: drop-shadow( 2px 2px 5px rgba(0, 0, 0, .5));
}

.banner {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../pics/introbg.jpg);
    background-size: cover;
    background-position: center;
	/*filter:hue-rotate(300deg);*/
    z-index: -1;
    mask-image: url(../pics/ink_lv2.gif);
    mask-size: cover;
    mask-position: center;
}

.flexcontainer {
	display: flex;
	flex-direction: column; 
    justify-content: space-evenly; 
	flex-wrap: nowrap;
    align-items: center;
    align-content: center;
}
.title {
	display: flex;
	display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    align-content: center;
	width: 65%;
	padding: 2em;
	margin: 10vh;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 25px;
	filter: drop-shadow( 5px 5px 5px rgba(0, 0, 0, .5));
}

.title{
	animation: boxanim 6s ease-in-out 1 forwards;
}
@keyframes boxanim{
    0%{
      opacity: 0;
    }
    10%{
	    opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }

.footer{
	display: flex;
	display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    align-content: end;
	width: 65%;
	padding: 2em;
	margin: 10vh;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 25px;
	filter: drop-shadow( 5px 5px 12px rgba(0, 0, 0, .5));
	animation: boxmove 4s 5s ease-in-out 1 forwards;
	opacity: 0;
}
@keyframes boxmove{
    from{
        opacity: 0;
        transform: translateX(10%);
    }to{
        opacity: 1;
        transform: translateX(0);
    }
  }

.btn{
	position: relative;
	padding: 0.5rem 1rem;
	font-size: 1.5rem;
	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;
	animation: boxmove 4s 5s ease-in-out 1 forwards;
	opacity: 0;
	z-index: 2;
}

.btn::after{
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--hauptgruent);
	clip-path: circle(0% at 50% 50%);
	transition:0.75s;
	z-index: -1;
}

.btn:hover::after{
	clip-path: circle(100% at 50% 50%);
}

.btn:hover{
	color: #000;
	box-shadow: 0 0 10px var(--hauptgruen), 0 0 50px var(--hauptgruen);
}


 svg path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 0.2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: textAnimation 4s 4s ease-in-out 1 forwards;
	padding: 1em;
	margin: 5em;
	width: 90%;
	
    z-index: 5;
  }
  @keyframes textAnimation {
    0% {
      stroke: #fff;
      stroke-dashoffset: 300;
    }
    10% {
      fill: transparent;
      filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .3));
    }
    100% {
      fill: #1f874b;
      stroke-dashoffset: 0;
      filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .5));
    }
  }
  
  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-top: 5px;
	margin: 0 auto;
	margin: 0 ;
	width: 100vw;
	animation: boxanim 3s ease-in-out 1 backwards;
	a {
		color:#000000;}
	i {
		font-size: 0.8em;
		color:#333333;
	}
}
