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

* {
  box-sizing: border-box;
}

body {
  font-family: "Orbitron", monospace;
  padding: 2em;
  background: #003;
  color: #e90;
  text-shadow: 0 0 .1em #a40;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: calc(8px + 1vmin);
}
html, body {
  height: 100vh;
  margin: 0;
}

h1 {
  font-style: italic;
  color: #373fff;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sensor {
  max-width: 80vmin;
  max-height: 80vmin;
  display: block;
  margin: auto auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.warp {
  color: inherit;
  font: inherit;
  border: 3px solid currentColor;
  padding: 1em 2em .75em;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.warp:hover {
  color: #fff;
}

.status {
  font: inherit;
  line-height: 1.2;
  margin: 0;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}