canvas{
    position:fixed;
    top:50%;
    left: 50%;
    transform:translate(-50%, -50%);
    box-shadow: #05241c 0px 7px 29px 0px;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}
/* #slider-container{
    position:fixed;
    top: 0;
    left: 0;
} */
body{
    background: #F2F2EF;
    background: #034334;
    color: white;
    font-family: "FK Grotesk Neue Trial";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.01em;
}

input[type="number"]{
    background: transparent;
    color: white;
    font-family: "FK Grotesk Neue Trial";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.01em;
    border: 0px;
}

.row{
    display:flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
p:nth-child(2){
    width: 150px;
}
p:nth-child(3){
    width: 40px;
}
input[type="range"]{
    mix-blend-mode: luminosity;
}
.controls{
    background: rgb(6 60 47 / 90%);
    color: white;

    display:flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 6px;
    border: 0;
    padding: 5px;
    backdrop-filter: blur(10px);

    position: fixed;
    top: 50px;
    left: 8px;
}

button {
    background: #042a21;
    border: 0px;
    border-radius: 6px;
    width: 100px;
    font-family: "FK Grotesk Neue Trial";
    letter-spacing: -0.01em;
    color: white;
    padding: 0.75em 1em;
    /* mix-blend-mode: multiply; */
}
button:hover {
    background: #043127;
    cursor: pointer;
}

.row:nth-of-type(2n) {
    padding-bottom: 5px;
    border-bottom: 1px solid #053529;
}

.row:last-of-type {
    padding: 10px 0px 0px 0px;
    border-bottom: none;
    border-top: 1px solid #053529;
}
.toggle {
    backdrop-filter: blur(5px);
}

.hide {
    display: none;
}