/* CSS files add styling rules to your content */

* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #888;
}

html, body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

body {
  margin: 0;
}

.app {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image {
  display: none;
}
#upload, #download {
  display: none;
}

.upload button {
  font-size: 1em;
  padding: .5em;
}

#menu {
  position: absolute;
  bottom: .5em;
  right: .5em;
  color: #fff;
}

#output {
  margin: auto;
  display: block;
  max-width: calc(100vw - 4em);
  max-height: calc(100vh - 6em);
}

[type="range"] {
  width: 100%;
  margin-top: .5em;
}