@font-face {
    font-family: 'Inter';
    src: url('../../webfonts/inter-latin-300-normal.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

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

:root{
    --color-primary:                hsl(0, 0%, 10%);
    --color-primary-light:          hsl(0, 0%, 25%);
    --color-primary-dark:           hsl(0, 0%, 0%);

    --color-secondary:              hsl(0, 0%, 35%);
    --color-secondary-light:        hsl(0, 0%, 55%);
    --color-secondary-dark:         hsl(0, 0%, 20%);

    --color-background-theme-dark:  hsl(0, 0%, 8%);
    --color-background-theme-light: hsl(0, 0%, 98%);
    --color-background-theme-body:  hsl(0, 0%, 100%);

    --color-white:                  hsl(0, 0%, 100%);
    --color-gray:                   hsl(0, 0%, 60%);
    --color-black:                  hsl(0, 0%, 10%);

    --font-family:                  'Inter', sans-serif;
    --font-family-title:            'Inter', sans-serif;
    --font-letter-spacing:          0;
    --font-letter-spacing-title:    0;

    --font-weight-light:            300;
    --font-weight-default:          400;
    --font-weight-title:            400;
    --font-weight-bold:             500;

    --line-height-default:          1.7;
    --line-height-tight:            1.25;

    --color-font-default:           hsl(0, 0%, 15%);
    --color-font-title:             hsl(0, 0%, 5%);
    --color-font-accent:            hsl(0, 0%, 35%);
    --color-font-muted:             hsl(0, 0%, 45%);

    --text-transform:               none;
    --button-background:            hsl(0, 0%, 10%);
    --button-background-hover:      hsl(0, 0%, 0%);
    --button-text-color:            hsl(0, 0%, 100%);
    --button-font-weight:           600;

    --border-radius-sm:             4px;
    --border-radius:                8px;
    --border-radius-lrg:            16px;
    --border-radius-xl:             16px;

    --border-color:                 hsla(0, 0%, 0%, 0.15);
    --border-color-dark:            hsla(0, 0%, 0%, 0.25);

    --container-width:              90rem;
    --container-width-xs:           42rem;
    --container-width-sm:           60rem;
    --container-width-md:           75rem;
    --container-width-lg:           115rem;
    --container-width-xl:           120rem;
}

