@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Share+Tech+Mono&display=swap');
@import '/StationeersServerUI/static/css/variables.css';

html {
  scroll-behavior: smooth;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    background-color: var(--bg-dark);
    color: var(--primary);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 5px var(--primary-glow);
    min-height: 100vh;
    line-height: 1.6;
    overscroll-behavior: none; /* Prevent overscroll bounce */
  }