Changing CTA Size, Font

Great theme! Apologies if this is addressed elsewhere, but is it possible to change the size of the font and the Call to Action button?

Add this code to Appearance - Theme Options - Other - Custom CSS and edit it to get the results you were looking for.

.cfa-text {
    font-size: 12px;
}

.cfa-button {
    font-size: 12px;
    padding: 10px 15px;
}

This code padding: 10px 15px; stands for button size (padding from text) horizontally and vertically, so you can tweak those values to resize this button or remove that line entirely to use default size.