.logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 13%;
}

/* Website-Container */

.container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Style der Satelliten */

.orbit li {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff9c00;
    text-align: center;
    /*line-height: 70px;*/
    position: relative;
}
.orbit li span{
    margin-top: 4rem;
    color: #f39c12;
}
.orbit li i{
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.orbit li:hover i, .orbit li:hover span{
    color: #fff;
}

.orbit li:before{
    content: '';
    position: absolute;
    display: block;
    width:80px;
    height:80px;
    background: rgba(48,174,224,0.5);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform:  translateZ(0) scale(1);
            transform: translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform:translateZ(0) scale(1.5);
            transform:translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateZ(0) scale(1);
            transform: translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) scale(1.5);
            transform: translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.orbit li:hover{
    background: #30aee3;
    
}
.orbit li:hover::before{
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}
.orbit li:hover a{
    color: #fff;
}

ul.orbit.orbitlistJS li {
    transition: all 0.2s linear;
    width: 80px;
    height: 80px;
     box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.orbit li a{
    display: block;
    height: 100%;
    width: 100%;
}

/*ul.orbit.orbitlistJS li:hover {
    background: #24d;
}*/

/*.orbit li.orbitlistJS-trace {
    background: #1ca;
}*/

/*.orbit li.orbitlistJS-active {
    background: #000;
}*/


