@import url('/css/dark-theme.css');
@import url('/css/light-theme.css');

* {
    box-sizing: border-box;
}
@font-face {
  font-family: "Ubuntu";
  src:
    url("/assets/fonts/Ubuntu-Regular.woff2") format("woff2"),
    url("/assets/fonts/Ubuntu-Regular.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap; /* Optional: improves performance */
}

body,html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
body {
    background: var(--primary-bg-color);
    color: var(--primary-color);
    font-family: Ubuntu;
}
