* {
    text-align: center;
    font-family: monospace;
    margin:0; 
    padding:0;
}

#menue{
    height: 43px;
    z-index: 2;
    background-color: rgba(51, 51, 51, 0);
    position: absolute;
    width: 100%;
    transition: 0.3s;
}

#menue:hover{
    background-color: rgba(51, 51, 51, 0.5);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
  
li {
    float: left;
}
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
}
  
li a:hover {
    background-color: rgba(0, 0, 0, 1);
}

canvas{
    display:block;
    touch-action: none;
}

body {
    background-color: #000;
    width:100%; 
    height:100%;
}

p {
    color:white;
}

.slidecontainer {
    width: 20%;
    position: absolute;
    right: 20px;
    top: 60px;
    z-index: 1;
    background-color: rgba(51, 51, 51, 0.5);
    padding-bottom: 20px;
}

.slidecontainer p {
    margin: 10px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 90%;
    height: 8px;
    background: white;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    cursor: pointer;
    border-radius: 10px;
}
  
.slider:hover {
    opacity: 1;
}
  
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    background: #ffffff;
    cursor: pointer;
}
  
.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    opacity: 1;
}

input:checked + .slide-switch {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);   
}

.coordinate{
    margin: 0px !important;
    padding: 0px !important;
    color: #ffffff;
}
