Slight Footer Update

Hey, I made a slight update to my footer. Now all the font sizes are dynamically created to be as large as possible (fill the entire area), and are vertically centered.

I was real proud, so I wanted to show off my php:

// Loop through font sizes and center
	for ( $fontsize = 28; $fontsize > 5; $fontsize-- ) {
		$size = imagettfbbox ( $fontsize, 0, $font, $string );
		
		if ( $size[2] < 270 ) {
			imagettftext($im, $fontsize, 0, 15, 30-$size[5]/2, $text_color, $font, $string); break;
		}
	}