:root {
  --firstcolor: #dd7722;
  --secondcolor: #007ba7;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat 300"), local("Montserrat-300"),
    url("./fonts/montserrat-v12-latin-300.woff") format("woff");
}

@font-face {
  font-family: "Syncopate";
  src: local("Syncopate Regular"), local("Syncopate-Regular"),
    url("./fonts/syncopate-v10-latin-regular.woff") format("woff");
}

@font-face {
  font-family: "Nothing";
  src: local("Nothing You Could Do"), local("NothingYouCouldDo"),
    url("./fonts/nothing-you-could-do-v7-latin-regular.woff") format("woff");
}

@font-face {
  font-family: "FontAwesome";
  src: url("./fonts/fontawesome-webfont.woff?v=4.7.0") format("woff");
}

body {
  background-color: black;
  background-image: url(images/wavesgrey.png);
  font-size: 100%;
  font-family: "Montserrat", sans-serif;
  margin: 0em;
  padding: 0em;
  color: #f3ecec;
  height: 100%;
  line-height: 1.5;
}

html {
  height: 100%;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-youtube:before {
  content: "\f167";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-music:before {
  content: "\f001";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-chain-broken:before {
  content: "\f127";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-paperplane-o:before {
  content: "\f1d9";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-safari:before {
  content: "\f267";
}
.fa-gg:before {
  content: "\f260";
}
.fa-phone:before {
  content: "\f095";
}

* {
  box-sizing: border-box;
  /* text-shadow: rgba(240,240,240,.01) 0 0 1px; */
}

table {
  border: 1px solid white;
  margin: 0 auto;
}
th,
td {
  border: 1px solid white;
  padding: 5px;
}

a {
  text-decoration: none;
  color: #ddeeff;
}

a:hover {
  color: var(--secondcolor);
}

a.active {
  color: var(--firstcolor);
}

p {
  font-size: 1em;
}
h1 {
  font-size: 3em;
  font-family: "Syncopate", sans-serif;
  font-weight: normal;
}
h2 {
  font-size: 2.5em;
  font-family: "Nothing";
  font-weight: normal;
}
h3 {
  font-size: 2em;
  font-family: "Montserrat", sans-serif;
  margin-top: 2em;
}
h4 {
  font-size: 1.75em;
}
h5 {
  font-size: 1.5em;
  font-weight: normal;
}

fieldset {
  width: 80%;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

input {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  line-height: 2;
}

textarea {
  font-family: "Montserrat", sans-serif;
  width: 300px;
  height: 200px;
  font-size: 1.2em;
  line-height: 1.5;
}

input[type="submit"] {
  padding: 10px;
  background-color: var(--secondcolor);
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  color: #ffffff;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.dropdown {
  padding: 0px;
  position: fixed;
  display: inline-block;
  right: 0px;
  top: 0px;
  z-index: 2;
}

.dropbtn {
  position: absolute;
  right: 15px;
  top: 10px;
  background: transparent;
  color: white;
  font-size: 2em;
  border: none;
  cursor: pointer;
  text-shadow: 5px 5px 5px black;
}

.dropdown hr {
  border-color: #333333;
  border-width: 0px;
}

.dropdown-content {
  height: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  min-width: 150px;
  box-shadow: 8px 7px 5px rgba(0, 0, 0, 0.6);
  padding: 10px 0px;
  transform: translate(180px, 112px);
  transition: transform 0.6s 0.1s;
}

.dropdown-content a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 1em;
}

.dropdown-content a:hover:not(.active) {
  color: var(--firstcolor);
}

.dropdown:hover .dropdown-content {
  height: initial;
  opacity: 1;
  transform: translate(-12px, 12px);
}

.dropdown:hover .dropbtn {
  display: none;
}

.welcome {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  z-index: -2;
}

.welcome50 {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  margin-bottom: 50px;
  z-index: -2;
}

.welcome25 {
  position: relative;
  height: 300px;
}

/* this is the container object for the parallax effect */
.wrapper {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 2px;
}

.parallax::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(1.5);
  /* Force the background image to fill the whole element. */
  background-size: cover;
  background-position: center;
  /* Keep the image from overlapping sibling elements. */
  z-index: -2;
}

.bg_waterfall::after {
  background-image: url(images/waterfall.jpg);
}
.bg_brain::after {
  background-image: url(images/brain.jpg);
}
.bg_iceberg::after {
  background-image: url(images/iceberg.jpg);
}
.bg_lake::after {
  background-image: url(images/lake.jpg);
}
.bg_dawn::after {
  background-image: url(images/dawn.jpg);
}
.bg_rush::after {
  background-image: url(images/rush.jpg);
}
.bg_junction::after {
  background-image: url(images/lifejunction.jpg);
}

.exkurs {
  padding: 15px;
  margin: 0;
  text-align: right;
  background-color: var(--secondcolor);
}

.smiley {
  position: absolute;
  transform: translate(120px, 0px);
  z-index: 0;
}

.smileytext {
  position: absolute;
  transform: translate(5px, -3px);
}

.headercontent {
  text-align: center;
  position: relative;
  z-index: 1;
}

#weiterbtn {
  text-align: center;
  color: #ffffff;
}

#weiterbtn a {
  display: inline;
  font-size: 1em;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 0.5em 1em 0.5em 1em;
  background-color: var(--secondcolor);
  border-radius: 5px;
  transition: background-color 1s;
}

#weiterbtn a:hover {
  background-color: #fb7733;
}

.floating {
  color: white;
  text-align: center;
  opacity: 0;
  animation: pulse 4s ease-in-out 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.rectangle {
  width: 100%;
  height: 100px;
}

.rectanglesmall {
  width: 100%;
  height: 50px;
}

.squarecontainer {
  display: flex;
  flex-wrap: wrap-reverse;
}

.squarecontainer2 {
  display: flex;
  flex-wrap: wrap;
}

.squarepic {
  align-self: center;
  flex: 60%;
}

.squarepic img {
  box-shadow: 0 0 2px black;
}

.squaretext {
  align-self: center;
  min-width: 200px;
  padding: 20px 12px;
  flex: 40%;
  text-align: center;
}

.textwithbkgrnd {
  padding: 10px;
}

.square {
  width: 90%;
  margin: 0 auto;
  padding: 0px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.square a {
  color: white;
}

.squaremodule {
  margin: 1.5em;
  padding: 0;
  width: 200px;
  height: 200px;
  box-shadow: 0 0 5px white;
  font-weight: bold;
  text-shadow: 0 0 5px #007ba7;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: font-size 0.3s, box-shadow 0.3s;
}

.squaremodule h3 {
  margin-top: 1em;
}

.squaremodule:hover {
  box-shadow: 0 0 30px white;
}

.images {
  text-align: center;
  padding: 20px;
}

.imagesbreit {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.imagesbreit hr {
  width: 50%;
  color: red;
  border-width: 5px;
  border-style: ridge;
  animation: strahl 4s ease-in-out 1s infinite;
}

@keyframes strahl {
  0% {
    width: 0;
  }
  5% {
    width: 0;
  }
  50% {
    width: 50%;
  }
  95% {
    width: 0;
  }
  100% {
    width: 0;
  }
}

.calendar {
  background-color: #ffffff;
  text-align: center;
  padding: 0em;
  margin: 0 auto;
}

.textmid {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 50px;
  border-radius: 50px;
}

.textleft {
  text-align: left;
  padding: 20px 60px 20px 40px;
  background: rgba(0, 0, 0, 0.7);
  width: 85%;
  margin: 0 auto;
  border-radius: 5px;
}

.textcenter {
  text-align: center;
  padding: 2em;
  background: rgba(0, 0, 0, 0.7);
  width: 85%;
  margin: 0 auto;
  border-radius: 5px;
}

.fuhtaback {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  border-radius: 5px;
  padding: 20px;
}

.safarihack {
  height: 1px;
  background: transparent;
}

.fuhta {
  /* height: 260px; */
  margin: 25px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.downlinks {
  text-align: center;
  font-size: 15px;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
}

.downlinks a {
  padding: 0px 25px;
  color: #ffffff;
}

.downlinks a:hover {
  color: var(--secondcolor);
}

.copyright {
  padding: 20px 0px;
  /* margin: 10px; */
}

/*
#lifeinstcookie {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #222222;
  text-align: center;
  padding: 1em;
  line-height: 1.1em;
  margin: 1.5em;
  border-radius: 10px;
  z-index: 10;
}

#lifeinstcookie a.button {
  cursor: pointer;
  background: #007ba7;
  padding: 3px 7px;
  border: 1px solid white;
  border-radius: 4px;
}
*/

@media screen and (max-width: 640px) {
  .smiley {
    transform: translate(80px, 0px);
  }

  textarea {
    width: 85%;
  }

  .squaretext {
    padding: 50px 10px;
  }

  .copyright {
    padding: 15px 0px;
  }

  .downlinks a {
    padding: 12px 0px;
  }

  .downlinks {
    padding: 10px 0px;
    flex-direction: column;
  }

  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.75em;
  }
  h3 {
    font-size: 1.5em;
  }
  /*
* {font-weight: bold;}
*/

  .textleft {
    padding: 20px 40px 20px 20px;
    width: 90%;
  }

  .textmid {
    padding: 0px 25px;
  }

  .textcenter {
    width: 90%;
  }
}
