html,
body {
  margin: 0;
  padding: 0;
  background: #252934;
}

body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #252934;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

body {
  text-align: center;
}

.debug-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(49, 56, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  background-color: #345b77;
  color: floralwhite;
  margin: 0 4px;
  border: floralwhite solid 1px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 230ms ease-in-out;
}

.button:hover, .button:focus, .button:active {
  background-color: #313840;
  border: floralwhite dotted 1px;
  outline: none;
}

.button.toggled {
  background-color: greenyellow;
  color: #313840;
  border: floralwhite wave 1px;
}

.separator {
  color: floralwhite;
}
