
/* LIL-GUI */

.lil-gui.root {
    color: #333333;
  --background-color: #6e7b6c;
  --text-color: #323232;
  --title-background-color: #a9a9a9;
  --title-text-color: #000000;
  --widget-color: #c2c2c2;
  --highlight-color: #7a7368;
  --folder-text-color: #000000;
  --string-color: #923c9c;
}

/* ART */

html {
	margin: 0;
	padding: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #EAE6DF;
}

#hydra {
	opacity: 0.1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

#content {
    margin: 0;
	padding: 0;
}

#c {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}

#price {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    background-color: rgba(234, 230, 223, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}