* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  overflow: hidden;
}

#app {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

aside {
  color: #fff;
  height: 100vh;
  background-color: #0c162d;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

aside > .inner {
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}

#generated {
  overflow: hidden;
  width: 80%;
  height: 100vh;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

canvas {
  width: 100%;
  height: 100vh;
}

form {
  width: 100%;
}

.input {
  width: 100%;
  margin-bottom: 20px;
}

.input label {
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}

.input label.description {
  display: inline;
  font-weight: 40;
}

.input button {
  width: 49%;
  margin-bottom: 0;
  margin: 0 1px;
}

.input button:first-child {
  background-color: #ff6647;
}

.input input {
  width: 100%;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #f53;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #f53;
  color: #fff;
  font-weight: 700;
  border: 0;
  margin-bottom: 20px;
}

.btn-alt {
  background-color: #ccc;
  color: #0c162d;
}

button[disabled] {
  background-color: #ccc;
  color: #666;
}

#download {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

canvas {
  background-color: #fff;
}
/*# sourceMappingURL=style.css.map */