You almost got it but if you want your widget titles, for example, in the right sidebar column to be centered, then you would need to target the container they are in:
#cir-right h3 {
text-align: center;
}
or this to target all widget titles in every position which uses an aside container:
aside h3 {
text-align: center;
}