*,
*::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 {
  --bg-size: 48px;
  height: 100vh;
  width: 100%;
  display: flex;
  background-image: repeating-conic-gradient(
      from 0deg at 0% 0%,
      #8e1d9e 0deg,
      #8ca6db 5deg
    ),
    repeating-conic-gradient(from 0deg at 100% 100%, #8ca6db 0deg, #8e1d9e 5deg);
  background-size: var(--bg-size) var(--bg-size);
  background-blend-mode: screen;
}
