/*variables*/
:root{
    --body--background-color: whitesmoke;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    /*font-family: 'The Girl Next Door', cursive;*/
    font-family: 'Quicksand', sans-serif;
    background-color: var(--body--background-color);
}

