:root {
  color-scheme: light;
  font-family: 'Inter', 'Manrope', 'Segoe UI', sans-serif;
  background-color: #f6f8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #ffffff 0%, #f6f8ff 45%, #eef2ff 100%);
  color: #0f172a;
  font-family: 'Inter', 'Manrope', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(129, 113, 255, 0.25);
  color: inherit;
}
