You should fill in the meta tag 'description' for your homepage. Right now it is blank. You'll find it in the header.php file.
I see you have meta tags for keywords in your single post pages. To add a description meta tag to those pages you could add
<?php if ( is_single()) { ?><meta name="description" content="<?php the_excerpt_rss(); " /><?php } ?>
to your header.php file. This will give you better descriptions for your single post pages. For your home or category pages you could add more conditional tags, for example:
<?php if ( is_home()) { ?>
<meta name="description" content="YOUR DESCRIPTION HERE" />
<?php } ?>
and so on for category pages, etc...