*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

a {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

body {
  height: 100vh;
  width: 100%;
  background-color: #020617;
  background-image: linear-gradient(
      to right,
      rgba(71, 85, 105, 0.15) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(71, 85, 105, 0.15) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 60%,
      rgba(236, 72, 153, 0.15) 0%,
      rgba(168, 85, 247, 0.05) 40%,
      transparent 70%
    );
  background-size: 40px 40px, 40px 40px, 100% 100%;
}
