
* {
  box-sizing: border-box;
}

:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #f4f5fb;
  background: #090b18;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(92, 72, 255, .20),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(70, 108, 255, .12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #090b18 0%,
      #0d1022 55%,
      #11142a 100%
    );
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

#app {
  min-height: 100vh;
}
