:root {
  --background: #010409;
  --foreground: #f0f6fc;
  --card: #0d1117;
  --card-foreground: #f0f6fc;
  --popover: #0d1117;
  --popover-foreground: #f0f6fc;
  --primary: #f0f6fc;
  --primary-foreground: #010409;
  --secondary: #0d1117;
  --secondary-foreground: #f0f6fc;
  --muted: #0d1117;
  --muted-foreground: #8a8f98;
  --accent: #262c36;
  --accent-foreground: #f0f6fc;
  --success: #4cd964;
  --info: #4da3ff;
  --warning: #ffc83d;
  --destructive: #e5484d;
  --border: #f0f6fc1a;
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/inter-v20-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/inter-v20-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/inter-v20-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/inter-v20-latin-700.woff2") format("woff2");
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  min-height: 100dvh;
}

.logo-hero {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  z-index: 1;
}

.animation {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 400px;
  height: 400px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.sub-text {
  color: var(--muted-foreground);
  max-width: 30rem;
  text-align: center;
  line-height: 1.5;
}

.not-found-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  height: 100dvh;
}
