:root {
  --white: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.46);
  --line: rgba(255, 255, 255, 0.28);
  --black: #000;

  --header-height: 600px;
  --page-padding: 58px;
  --max-width: 1720px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  overflow-x: hidden;
  /* overflow-y: hidden; */
}

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

@media (max-width: 760px) {
  :root {
    --page-padding: 24px;
    --header-height: 68px;
  }
}
