:root {
  --bg-dark: hsl(224 0% 1%);
  --bg: hsl(224 0% 4%);
  --bg-light: hsl(224 0% 9%);
  --text: hsl(224 0% 90%);
  --text-muted: hsl(224 0% 69%);
  --highlight: hsl(224 0% 39%);
  --border: hsl(224 0% 31%);
  --border-muted: hsl(224 0% 13%);
  --accent: #e50914;
  --accent-dark: #b20710;
  --shadow-color: rgba(0, 0, 0, 0.5);

  --header-size: 11%;
  --footer-size: 3%;
  --border-size: 1px;
  --transform: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  height: 100svh;
  width: 100svw;
  background-color: var(--bg-dark);
}