/* ============== importing the font in the file ================= */

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

/* ================= global colour variables ================== */

:root{
    --logoBlue: #2d85c4;
    --lightBlue: #cfecff;
    --logoOrange: #e57b25;
    --logoBrown: #422b0e;
}

body, html{
    font-family: 'Inter', sans-serif;
}