* {
    text-align: center;
    font-family: monospace;
    margin:0; 
    padding:0;
}

#menue{
    height: 40px;
    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;
}

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;
}

.switch {
    opacity: 0.7;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 20px;
}

.switch:hover {
    opacity: 1;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

  /* The slider */
.slide-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
}

.slide-switch:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slide-switch:before {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.slide-switch.round {
    border-radius: 20px;
}
  
.slide-switch.round:before {
    border-radius: 50%;
}

input:checked + .slide-switch {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);   
}
