* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "consolas";
}

h1 {
    position: fixed;
    padding: 10px 30px;
    color: white;
    background-color: transparent;
    user-select: none; 
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


canvas {
    background-color: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}


#divMetriken {
    width: 20vw;
    margin: 1% auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    opacity: 0.8;
}


p {
    text-align: center;
    width: 100%;
    font-size: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: white;
    user-select: none;
    margin: 5%;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
}

.sliderDiv {
    display: flex;
    flex-direction: column;
    align-items: left;
    background-color: transparent;
    border: 1px solid gray;
    padding: 0% 5%;
    border-radius: 20px 20px;
    margin: 3%;
    opacity: 30%;
    transition: all 0.2s ease-in-out;
}

.sliderDiv:hover {
    background-color: white;
    opacity: 90%;
    transform: scale(1.2);
}
.sliderDiv:hover p{
    color: black;
}

.sliderDiv input {
    padding: 0;
}

.sliderDiv p {
    color: white;
    font-weight: BOLD;
    text-align: left;
    padding: 0%;
    background-color: transparent;
}

#labelTotalLines {
    position: fixed;
    text-align: left;
    bottom: 0;
    padding: 10px 20px;
    color: white;
    background-color: transparent;
    user-select: none;
    opacity: 1.0;
}

#divSliderBranchLengthRandomness {
    flex-direction: row;
}

#divSliderBranchLengthRandomness input{
    width: 28px;
}



.glowSchatten {
    animation: glowSchatten 0.2s ease-in-out;
}

@keyframes glowSchatten {
    0% {
        box-shadow: none;
    }

    50% {
        box-shadow: 1px 1px 10px 20px white;
        opacity: 1.0;
    }

    100% {
        box-shadow: none;
    }
}
