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

#particleWebCanvas {
    background: #181818; /* Bild fittet nicht komplett, deswegen mit Color patchen*/
    position: fixed;
    z-index: 0;
    width: 100vw;
}

#interface {
    position: fixed;
    top: 1.5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

#dropdownArrow {
    cursor: pointer;
    color: white;
    background: black;
    font-size: 25px;
    rotate: 180deg;
    transition: transform 0.3s ease-in-out;
}
#dropdownArrow:hover {
    transform: scale(1.3);
    color: black;
    background: white;
}

#dropdownContent {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0vh;
    transition: max-height 0.3s ease-in-out;
}

#rgbA {
    border: 1px solid white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 5px;
}
#rgbA div {
    width: 170px;
}

#interface.show-dropdown #dropdownContent {
    max-height: 85vh;
}



#interface div {
    margin: 0px 20px 0px 20px; /*Links und Rechts*/
    padding: 12px;
    border-radius: 15px;
    user-select: none;
    opacity: 80%;
    transition: all 0.2s ease-in-out;
}
#interface div div:hover {
    transform: scale(1.1);
    opacity: 100%;
    background: white;
    color: black;
}