/* Website-Container */

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: ivory;
    overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}

/* Style der Satelliten */

.orbit li {
    width: 100px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid darkgoldenrod;
	background: NavajoWhite;
    text-align: center;
    line-height: 30px;
	font-size: 12px;
}

ul.orbit.orbitlistJS li {
    transition: all 0.2s linear;
}

ul.orbit.orbitlistJS li:hover {
    background: gold;
}

a {
	color: sienna;
	font-weight: bold;
	text-decoration: none;
}

.orbit li.orbitlistJS-trace {
    background: navajowhite;
}

.orbit li.orbitlistJS-active {
    background: gold;
}
