@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root{
    /* ## Colors

### Primary */

--Blue-200: hsl(193, 38%, 86%);
--Green-300: hsl(150, 100%, 66%);

/* ### Neutral */

--Blue-600: hsl(217, 19%, 38%);
--Blue-900: hsl(217, 19%, 24%);
--Blue-950: hsl(218, 23%, 16%);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--Blue-950);
    color: var(--Blue-200);
    margin: 0;
    padding: 0;
}