:root{
  --red:#E10600;
  --black:#0B0B0C;
  --white:#FFFFFF;
  --font-heading:"Oswald","Inter",system-ui,sans-serif;
  --font-body:"Inter",system-ui,sans-serif;
}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--font-body);
}
h1,h2,h3,h4{
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.04em;
}
a{color:inherit;text-decoration:none}