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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: background 0.4s, color 0.4s;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
}

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}


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