:root {
    --clr-primary: #0877bd;
    --clr-primary--darker: #065d93;
    --clr-bg: #f2f6fe;
    --clr-light: #fff;
    --clr-dark: #030712;
    --clr-gray: rgba(0, 0, 0, 0.7);
    --clr-red: hsl(333deg, 100%, 55%);

    /* SIZES */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: calc(1em + 0.5rem);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clr-bg);
    min-height: 100vh;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
}

button {
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

::-moz-selection {
    /* Code for Firefox */
    color: var(--clr-light);
    background: var(--clr-primary);
}

::selection {
    color: var(--clr-light);
    background: var(--clr-primary);
}

.text--primary {
    color: var(--clr-primary);
}
