html{
    height: 100%
}

body{
    margin:0px;
}
#controls{
    position: absolute;
    right: 0;
    width: 30vw;
    padding: 10px;
    box-sizing: border-box;
    display: grid;
    background-color: red;
    height: 100vh;
    color: white;
    align-content: start;
}

@media (max-width: 600px) {
  #controls {
    bottom:0px;
    width: 100vw;
    height: 40vh;
  }
}

canvas {
    height: 100vh;
    width: 70vw;
    float: left;
    position: absolute;
}

@media (max-width: 600px) {
    canvas {
        height: 60vh;
        width:100vw;
    }
}

select {
    border-radius: 5px;
    background-color: gray;
    color: white;
    height: 25px;
    margin-top: 5px;
    margin-bottom: 10px;
}



input[type="file"] {
    height: 25px;
    margin-top: 5px;
    margin-bottom: 15px;
}

button {
    background-color: grey;
    color: white;
    border-radius: 5px;
    border-color: gray;
    box-shadow: none;
    margin-top: 1px;
    margin-bottom: 1px;
    height: 25px;
    border:none;
}