JButton optionsButton = new JButton(Constants.OPTIONS_BUTTON_LABEL);
optionsButton.setAlignmentX(Component.CENTER_ALIGNMENT);
optionsButton.setAlignmentY(Component.CENTER_ALIGNMENT);
optionsButton.setFont(new Font("Tahoma", Font.CENTER_BASELINE, 18));
optionsButton.setMargin(new Insets(10, 45, 10, 45));
optionsButton.addActionListener(new OptionsButtonListener());
return optionsButton;
}