/* || Fonts Imports ('Outfit')
 *************************/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* || Global Variables
 *************************/
:root {
    /* || Colors
     *************************/
    --white: #ffffff;
    --light-gray: #d6e2f0;
    --grayish-blue: #7b879d;
    --dark-blue: #1f3251;

    /* || Fonts
     *************************/
    --outfit: "Outfit", sans-serif;

    /* || Spacing
     *************************/
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;

    /* || Font sizes
     *************************/
    --fs-sm: 0.9375rem;
    --fs-md: 1.375rem;
}