@import url('https://fonts.googleapis.com/css?family=Bangers');

body, html {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  height: 100%;
  font-family: sans-serif;
  overflow: hidden;
}

section {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000 url('bg.jpg') no-repeat 50% -420px;
  transform: translateZ(0);

}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

main, footer {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 70%;
  margin: 0 auto;
  color: white;
  text-align: center;
  z-index: 102;
}
#logo {
  display: inline-block;
  margin: 0 auto 4em;
}
#logo svg * {
  transition: all .2s linear;
}
#logo svg {
  width: 414px;
  height: 439px;
}
#logo svg .bg {
  fill: #640c00;
}
#logo:hover svg #Unter_Tage {
  fill: #fff;
  stroke: #000;
}
#logo:hover svg .bg {
  fill: #d0242a;
}

main h1 {
  font-family: 'Bangers', cursive;
  font-size: 5.625em;
  margin: 0;
  letter-spacing: 0.05em;
  text-align: center;
  color: white;
  transition: all .25s linear;
}
main .separator_container {
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  margin: 12px 0;
}
main .separator_container:before,
main .separator_container:after {
  display: table;
  content: "";
}
main .separator_container:after {
  clear: both;
}
main .separator {
  color: white;
  margin: 0 auto 1em;
  width: 25em;
}
main .line_separator svg {
  width: 50px;
  height: 50px;
  fill: #d0242a;
}
main .line_separator:before,
main .line_separator:after {
  display: block;
  width: 40%;
  content: " ";
  margin-top: 25px;
  border: 1px solid white;
}
main .line_separator:before { float: left; }
main .line_separator:after { float: right; }

main h3 {
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

#capsule {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 1000px);
  transform: translate(-50%, 1000px);
  width: 180px;
  height: 330px;
  border-radius: 9%;
  background-color: #000;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.07);
  z-index: 101;
  transition: all 5s ease-in-out;
}
#capsule.moved {
  -webkit-transform: translate(-50%, 600px);
  transform: translate(-50%, 600px);
}


h3 a {
  color: #d0242a;
  text-decoration: none;
  font-weight: 900;
  width: 48px;
  height: 48px;
}
h3 a:hover,
h3 a:active,
h3 a:focus {
  color: #ed4749;
}

footer {
  top: auto;
  bottom: 5px;
  color: #646464;
}
footer a {
  color: #646464;
  text-decoration: none;
}
footer a:hover,
footer a:active,
footer a:focus {
  color: #d0242a;
}

footer a.tp {
  display: inline-block;
  padding-top: 5px;
}

footer span {
  display: block;
  margin-top: 1em;
}

a.fb svg {
  width: 48px;
  height: 48px;
  fill: #646464;
}
a.cba svg {
  width: 40px;
  height: 50px;
  fill: #646464;
}
a:hover svg, a:active svg, a:focus svg {
  fill: #d0242a;
}





.tp { position: relative; }

.tp::before,
.tp::after {
  text-transform: none;
  font-size: .9em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;

  left: 50%;
  transform: translate(-50%, -0.5em);
}
.tp::before {
  content: '';
  border: 5px solid transparent;
  z-index: 1001;

  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
.tp::after {
  content: attr(title);
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;

  bottom: calc(100% + 5px);
}
.tp:hover::before,
.tp:hover::after {
  display: block;
  animation: tooltips-vert 300ms ease-out forwards;
}


/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}



@media screen and (max-width: 1024px) {

  #logo {
    margin: 0 auto 2em;
  }
  #logo img {
    width: auto;
    height: 300px;
    margin: 0 auto 2em;
  }

  main h1 {
    font-size: 3.625em;
  }
}