html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    touch-action: none;
}

#root {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#composeContent {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

#gl {
    position: absolute;
    z-index: 0;
}

.splash {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition:
      opacity 200ms ease;
}

.splash.hidden {
    opacity: 0;
}

body {
  background-color: #ffffff;
  color: #000000;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  svg path,
  svg rect{
    fill: #ffffff;
  }
}