@font-face {
    font-family: 'Mona Sans';
    src:
      url('/fonts/MonaSans/Mona-Sans.woff2') format('woff2 supports variations'),
      url('/fonts/MonaSans/Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
  }
  
@font-face {
    font-family: 'Hubot Sans';
    src:
        url('/fonts/HubotSans/Hubot-Sans.woff2') format('woff2 supports variations'),
        url('/fonts/HubotSans/Hubot-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
    }

body {
    margin: 0;
    font-family: 'Hubot Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    color: rgba(12, 12, 12, 1.0);
    overflow-y: auto;
}

noscript {
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    row-gap: 20px;
    user-select: none;
    pointer-events: none;
}

noscript > img {
    opacity: 1.0;
}

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

* {
    box-sizing: border-box;
}

#root {
    z-index: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    background-color: white;
}

