@import './color.scss';

* {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}

html {
  /* stylelint-disable-next-line */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  background-color: $fff;
  touch-action: none;
}

#root {
  flex: 1;
  display: flex;
}

::selection {
  color: $fff;
  background-color: $c333;
}
