@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  scroll-behavior: smooth;
}
:root {
  --bg-dark: oklch(0.1 0.025 264);
  --bg: oklch(0.15 0.025 264);
  --bg-light: oklch(0.2 0.025 264);
  --text: oklch(0.96 0.05 264);
  --text-muted: oklch(0.76 0.05 264);
  --highlight: oklch(0.5 0.05 264);
  --border: oklch(0.4 0.05 264);
  --border-muted: oklch(0.3 0.05 264);
  --primary: oklch(0.76 0.1 264);
  --secondary: oklch(0.7603 0.1006 55.07);
  --danger: oklch(0.7 0.05 30);
  --warning: oklch(0.7 0.05 100);
  --success: oklch(0.7 0.05 160);
  --info: oklch(0.7 0.05 260);
  --text-fea: oklch(0.7623 0.0491 231.84);
}
body {
  background-color: var(--bg-dark);
  width: 100dvw;
  overflow-x: hidden;
}
* {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  color: var(--text);
}

/* Start Navbar Style */
header li,
header a {
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
}
header button {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
header {
  top: 0;
  display: flex;
  position: sticky;
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 4rem;
  background-color: var(--bg-light);
}
.home {
  cursor: pointer;
  width: 3.5%;
  height: 3.5%;
}
.nav-links {
  list-style: none;
  background-color: var(--bg-light);
}
.nav-links li {
  display: inline-block;
  padding: 0rem 1.25rem;
  background-color: var(--bg-light);
}
.nav-links li a {
  transition: all 0.3s ease 0s;
  background-color: var(--bg-light);
}
.nav-links li a:hover {
  color: var(--text-muted);
}
header button {
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  background-color: var(--bg-light);
  border: 2px solid var(--info);
  color: var(--info);
}
