body {
  background: black;
  color: #555;
  font-family: monospace;
  font-size: 18px;
  margin: 0;
}

img {
  display: block;
  width: 100%;
}

input[type=checkbox] {
  display: none;
}

label {
  cursor: pointer;
  display: inline-block;
  margin-right: 1em;
  padding: 0.4em 0;
}

input[type=checkbox] + label:before {
  background: #555;
  content: "";
  display: inline-block;
  height: 16px;
  margin-right: 8px;
  position: relative;
  top: 1px;
  width: 16px;
}

input[type=checkbox]:checked + label:before {
  background: #00ffaa;
}

.container {
  margin: 0 auto;
  max-width: 600px;
  position: relative;
  clip-path: none;
}
@media (min-width: 420px) {
  .container {
    clip-path: polygon(0% 0%, 0% 92%, 91% 92%, 91% 0%);
  }
}

.container--offset {
  margin-left: 0;
}

button {
  background: #555;
  border: 10px solid #00ffaa;
  cursor: pointer;
  display: block;
  font-family: monospace;
  font-size: 24px;
  height: 80px;
  line-height: 60px;
  margin: 0;
  outline: none;
  padding: 0 1.2em;
  text-align: right;
}
button:hover {
  background: #00ffaa;
}
button#deleteme {
  margin: 2rem;
}

.scene {
  margin: 0;
  padding: 0;
}
.scene button {
  left: 10%;
  top: 260px;
  width: 80%;
  position: absolute;
}

.fill {
  bottom: 5%;
  left: 5%;
  position: absolute;
  right: 5%;
  top: 5%;
}

.expand-width {
  width: 100%;
}

.border {
  border: 2px dashed green;
}

.aspect {
  opacity: 0.2;
}

.rotate {
  animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/*# sourceMappingURL=/styles.164d45a1.css.map */