@import url('https://fonts.googleapis.com/css?family=Roboto');

  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  li {
    margin: 0;
    padding: 0;
  }

  a {
    text-transform: none;
    text-decoration: none;
    color: white;
  }

  * {
    /*font-family: 'Monospaced Number', sans-serif;*/
    font-family: Helvetica,"Monospaced Number", "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
  }

  #react-root {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
  }

  button {
    outline: inherit;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
  }

