@font-face {
    font-family: "Mulish";
    src: url("/font/Mulish-VariableFont_wght.eot");
    src: url("/font/Mulish-VariableFont_wght.eot?#iefix") format('embedded-opentype'),
         url("/font/Mulish-VariableFont_wght.woff2") format('woff2'),
         url("/font/Mulish-VariableFont_wght.woff") format('woff'),
         url("/font/Mulish-VariableFont_wght.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
	background: #222;
  background-image: linear-gradient(to bottom right, #222, #000);
  /* background-image: linear-gradient(to bottom right, #fff, rgb(37, 150, 190)); */
	margin: 0rem;
	min-height: 100vh;
	font-family: Mulish, sans-serif;

}

a {
  text-decoration: none;
  color: rgb(37, 150, 190);
}

a[href^=tel] {
  text-decoration: none;
  color: rgb(37, 150, 190);
}

#canvas, #text {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
}
#canvas {
  position: fixed;
}

#text {
  min-height: 100vh;
  width: 100%;
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  font-size: 5vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
    box-sizing:content-box;
}
#text h1 {
	opacity: 0.9
}

section {
  position:relative;
  color:#fff;
  width:80%;
  margin:0 auto;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding:10px;
  border-left:1px solid #222;
  border-right:1px solid #222;
}

section:first-of-type {
      border-top:1px solid #222;
}

section h2 {
  text-align: center;
  font-size:2.5em;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;

}

footer {
  background: #222;
  background-image: linear-gradient(to bottom right, #222, #000);
  bottom:0;
  position:fixed;
  width:100vw;
  text-align: center;
  color:#fff;
  z-index:2;
  font-size: 2vmin;

}

footer a {
  color:#ccc;
  text-decoration: none;
}
nav {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  position:fixed;
  left:50%;
  transform: translate(-50%, 0);
  top:0;
  color:#fff;
  width:90%;
  display:flex;
  justify-content: space-around;
  border-bottom:1px solid #fff;
  padding:10px;
  z-index:2;
}

nav a {
  color:#fff;
  text-decoration: none;
  cursor: pointer;
  transition: .3s all ease-in-out;
}

nav a:hover {
  color: rgb(37, 150, 190);
}

#fly_info {
  position:fixed;
  bottom:0;
  width:80vw;
  max-width: 500px;
  display:flex;
  justify-content:space-around;
  animation: slide 0.5s forwards;
  -webkit-animation: slide 0.5s forwards;
  -webkit-animation-delay: 2s;
  left: -600px;
  border-top: 1px solid #222;
  z-index:5;
}

.animateOut {
  display:none !important;
}

#fly_info:after{
  display: inline-block;
  content: "\00d7"; /* This will render the 'X' */
  cursor:pointer;
}

@-webkit-keyframes slide {
    100% { left: 0; }
}
@keyframes slide {
    100% { left: 0; }
}
i.fas, i.fab {
  transition: all .5s;
}

i.fas:hover, i.fab:hover {
  color: rgb(37, 150, 190);
}

.sichereMail:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}
