/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-bg-header: #03000b;
  --color-border-header: rgba(255, 255, 255, 0.08);
  --color-text-light: #ffffff;
  --color-cta-bg: #f7e934;
  --color-cta-text: #151515;
  --color-accent-purple: #a100ff;

  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Gelasio", Georgia, "Times New Roman", serif;
  --font-display: "Poppins", var(--font-base);
  --font-mono-label: "DM Sans", var(--font-base);
  --font-roboto: "Roboto", var(--font-base);

  --header-height: 92px;
  --container-max-width: 1520px;
  --container-padding-inline: 40px;
}

@media (max-width: 480px) {
  :root {
    --container-padding-inline: 20px;
  }
}
/*Custom by Tbi*/
body {
  font-family: var(--font-base);
  background-color: #0d0714;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

