/* Good 'ol resetter */
* {
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* The rest of this document is for basic styling of universal elements */
body,
html {
  background: rgb(17, 16, 26);
  overflow: auto;
  width: 100%;
  height: 100%;
  font-family: 'IBM Plex Sans ExtraLight', sans-serif;
}

#controls {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

#controls input.button {
  background: rgb(43, 51, 68);
  color: white;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 0.75px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px dashed white;
  border-bottom: none;
  font-family: 'IBM Plex Sans ExtraLight', sans-serif;
}
