*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-display: 'Audiowide', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --white: #ffffff;
  --pad-x: 3rem;
  --pad-x-sm: 1.25rem;
}

html { background: #000; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }