html, body{
    background-color: #000;
}

body{
    margin: 0;
    padding: 0;
    background-image: radial-gradient(#49030f 15%, black 50%)
}

#scene3d{
    height: 100vh;
    width: 100%;
}

#interface{
    position: absolute;
    bottom: 4vh;
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}

#logo{
    position: fixed;
    z-index: 50;
    width: 136px;
    height: auto;
    margin-left: calc(50% - 75px) ;
    top: 30px;
    cursor: pointer;
}

.colorselector{
    width: 50px;
    height: 50px;
    margin: 5px;
    background-color: white;  
    pointer-events: auto; 
    cursor: pointer; 
    transition: width 0.1s ease-in-out, height 0.1s ease-in-out, margin 0.1s ease-in-out;
}

.colorselector.active,
.colorselector:hover{
    width: 60px;
    height: 60px;
    margin: 0;
}

#color1{
    background-color: black;
    outline: 1px solid #444;
}

#color2{background-color: #b70826;}
#color3{background-color: #888888;}
#color4{background-color: white;}
