SOLUTION
You can add this code to your custom functions.php file:
function add_categories( $classes = '' ) {
$categories = get_the_category();
foreach( $categories as $category ) {
$classes[] = 'category-'.$category->slug;
}
return $classes;
}
add_filter( 'body_class', 'add_categories' );