/* Use only as bootstrap! */

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@0;1&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;

  /* Default by React */
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;*/

  font-family: 'Roboto', sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  box-sizing: border-box;
}

html, body, body > #app {
  min-height: 100%;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/* Firefox (or more) FIX*/
video,
a, a:active, a:focus {
  outline: none;
}


html {
  scrollbar-width: thin; /* Firefox */
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
    background: #dddddd;
    border-radius: 0;
}
::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 0;
}

textarea {
  line-height: 1;
}
