I am in the process of making a script for this and have other options for you to change as well. If you want to do this yourself, go to your game data files, go to the JS folder and open up
and open rpg_scenes.js
and now do a Ctrl F and find this line
Scene_Title.prototype.drawGameTitle
Delete this function and replace it with the one below.
Now follow my comments to adjust it to your liking
//Untill I can push a plugin for this, you can adjust this to accomplish what you are trying to do
Scene_Title.prototype.drawGameTitle = function() {
var x = 20;
var y = Graphics.height / 3;
var maxWidth = Graphics.width - x * 2;
var text = $dataSystem.gameTitle;
this._gameTitleSprite.bitmap.outlineColor = 'black';
this._gameTitleSprite.bitmap.outlineWidth = 8;
this._gameTitleSprite.bitmap.fontSize = 78; //Change this value to change font size
this._gameTitleSprite.bitmap.drawText(text, x, 0, maxWidth, 48, 'center'); // Adjust values for x and y to figure the pos of the title text
};
// Below are default values, remove the slashes and delete your old
// code to revert back to original
//Scene_Title.prototype.drawGameTitle = function() {
// var x = 20;
// var y = Graphics.height / 4;
// var maxWidth = Graphics.width - x * 2;
// var text = $dataSystem.gameTitle;
// this._gameTitleSprite.bitmap.outlineColor = 'black';
// this._gameTitleSprite.bitmap.outlineWidth = 8;
// this._gameTitleSprite.bitmap.fontSize = 72;
// this._gameTitleSprite.bitmap.drawText(text, x, y, maxWidth, 48, 'center');
//};