* {
      margin: 0;
      padding: 0;
  }

  html {
      height: 100%;
  }

  body {
      overflow-y: scroll;
      background: #fff;
      font-family: 'Futura LT W01 Light', sans-serif;
      font-size: 18px;
      font-weight: normal;
      color: #000;
      line-height: 180%;
      height: auto;
      min-height: 100%;
      background: url('images/background.jpg') fixed center center;
      background-size: cover;
    }

small {
  font-size: 12px;
}

  #landingpage {
        width: 320px;
        position: relative;
        margin: 0 auto;
        font-size: 16px;
    }

    #cover {
        position: relative;
    }

    #cover img {
        width: 100%;
        height: auto;
        display: block;
    }

    #button {
        position: absolute;
        z-index: 999;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
        overflow: hidden;
    }

    #button_animation {
        position: absolute;
        z-index: 999;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        -webkit-animation: playbutton 5s ease-in infinite;
        animation: playbutton 5s ease-in infinite;
        -webkit-transition: -webkit-transform 0.15s ease-in;
        transition: -webkit-transform 0.15s ease-in;
        -o-transition: transform 0.15s ease-in;
        transition: transform 0.15s ease-in;
        transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in;
    }

    #button_animation.animate {
        -webkit-animation: none;
        animation: none;
    }

    #button_animation_container {
        position: absolute;
        z-index: 999;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: transform 0.15s ease-in;
        transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in;
    }

    #button:hover #button_animation_container {
        -webkit-transform: scale(1.3);
            -ms-transform: scale(1.3);
                transform: scale(1.3);
    }


    #play {
        position: absolute;
        border-left: 30px solid rgba(255,255,255,0.5);
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        left: 46.5%;
        top: 43.5%;
        z-index: 1001;
    }

    #play.animate {
        border: none;
        width: 30px;
        height: 30px;
        background: rgba(255,255,255,0.5);
        left: 45.41%;
        top: 45.41%;
    }

    #circle {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
                transform: translateX(-50%) translateY(-50%);
        width: 86px;
        height: 86px;
    }


  #outer_pulse {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 50%;
    background-color: #c00303;
    opacity: 0;
  }

  #outer_pulse.animate {
    -webkit-animation: pulse-ring 1.75s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
            animation: pulse-ring 1.75s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    opacity: 1;
}

  #inner_pulse {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    border-radius: 50%;
  }

    #inner_pulse.animate {
        -webkit-animation: pulse-dot 1.75s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
                animation: pulse-dot 1.75s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
    }


@-webkit-keyframes pulse-ring {
  0% {
    -webkit-transform: scale(.33);
            transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}


@keyframes pulse-ring {
  0% {
    -webkit-transform: scale(.33);
            transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@-webkit-keyframes pulse-dot {
  0% {
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
}

@keyframes pulse-dot {
  0% {
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
}

@keyframes playbutton {
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


#landingpage #header {
    position: relative;
    width: 320px;
    background-color: #181818;
    text-align: center;
    color: #fff;
}

#landingpage #header h1 {
    padding: 16px 0;
    font-size: 21px;
    font-family: 'Futura LT W01 Light', sans-serif;
    font-weight: normal;
    line-height: 150%;
    text-align: center;
}

#landingpage #header h1 span {
    display: block;
    margin-top: 5px;
}

#landingpage #header #presale {
    font-size: 18px;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
    border-top: 1px dotted #aaa;
}

#landingpage #header #tracks {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.25s ease-in;
    -o-transition: max-height 0.25s ease-in;
    transition: max-height 0.25s ease-in;
    text-align: left;
}

#landingpage #header #tracks.animate {
    max-height: 200px;
}


#landingpage #header #tracks > div {
    border-top: 1px dotted #aaa;
    padding: 10px 0;
}

#landingpage #header #tracks table {
    width: 280px;
    display: block;
    margin: 0 auto;
}

#landingpage #header #tracks table tr {
    cursor: pointer;
}

#landingpage #header #tracks table td {
    height: 30px;
    line-height: 30px;
    position: relative;
}

#landingpage #header #tracks table td span {
    border-left: 9px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    display: block;
    position: relative;
    top: -1px;
    -webkit-transition: border 0.25s ease-in;
    -o-transition: border 0.25s ease-in;
    transition: border 0.25s ease-in;
}

#landingpage #header #tracks table td span.animate {
    border-left: 9px solid #c00303;
}

#landingpage #header #tracks table td:nth-child(2) {
    padding-left: 10px;
    white-space: nowrap;
}

#landingpage #header #tracks table td:nth-child(3) {
    text-align: right;
    width: 50%;
}







#landingpage #header .header p {
    padding: 5px 20px 20px;
    font-size: 14px;
    word-break: normal;
}



#landingpage #service {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

#landingpage #service ul {
    list-style: none;
}

#landingpage #service ul li {
    display: block;
}

#landingpage #service a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 90px;
    width: 100%;
    border-bottom: 1px dotted #ddd;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
}

#landingpage #service ul li:last-child a {
    border-bottom: none;
    background: #181818;
}

#landingpage #service a:hover {
    background: #eee;
}


#landingpage #service a img {
    width: 175px;
    display: block;
}

#landingpage #service ul li:first-child img{
    width: 150px;
}

#landingpage #service ul li:nth-child(2) img{
    width: 155px;
}

#landingpage #service ul li:nth-child(3) img{
    width: 138px;
}

#landingpage #service ul li:nth-child(4) img{
    width: 165px;
}

#landingpage #service ul li:nth-child(5) img{
    width: 150px;
}

#landingpage #service ul li:nth-child(6) img{
    width: 145px;
}

#landingpage #service ul li:nth-child(7) img{
    width: 110px;
}

#landingpage #service ul li:nth-child(8) img{
    width: 65px;
}




#landingpage #rechtliches p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

#landingpage #rechtliches p a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}

#landingpage #rechtliches p a:hover {
    color: #c00303;
    -webkit-transition: color 0.3s ease-in;
    -o-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in;
}
