*
{
    margin: 0;
    padding: 0;
}

html,
body{
  overflow: hidden;
}

.webgl {
  grid-column: 1/1;
  grid-row: 1/1;
  outline: none;
  width: 100% !important;
  height: 100% !important;
}

.paramSelect {
  grid-column: 2/2;
  grid-row: 1/1;
  outline: none;
  width: 100% !important;
}

.container {
  display: grid;
  width: 100vw;
  height: 100vh;
  grid-template-columns: 50vw 50vw;
  grid-template-rows: 100vh;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 600px) {
  .webgl {
    grid-column: 1/1;
    grid-row: 2/2;
    outline: none;
    width: 100% !important;
    height: 100% !important;
  }
  
  .paramSelect {
    grid-column: 1/1;
    grid-row: 1/1;
    outline: none;
    width: 100% !important;
  }
  
  .container {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-columns: 100vw;
    grid-template-rows: 50vh 50vh;
    align-items: center;
    justify-content: center;
  }
}
