* {
    padding: 0;      /* Removes default padding */
    margin: 0;       /* Removes default margin */
    box-sizing: border-box;  /* Ensures padding and border are included in the element's total width and height */
}

body{
    font-family: "Poppins", sans-serif;
}

:root {
    --color-anthracite: #333333;
    --color-anthracite-light: #383e42;
    --color-silver-gray: #CCCCCC;
    --color-charcoal: #555555;
    --color-slate-blue: #6C7B8B;
    --color-teal: #008080;
    --color-ivory: #FFFFF0;
    --color-gold: #d29e2e;
}
