JButton aboutButton = new JButton(Constants.ABOUT_BUTTON_LABEL);
aboutButton.setAlignmentX(Component.CENTER_ALIGNMENT);
aboutButton.setAlignmentY(Component.CENTER_ALIGNMENT);
aboutButton.setFont(new Font("Tahoma", Font.CENTER_BASELINE, 18));
aboutButton.setMargin(new Insets(10, 53, 10, 53));
aboutButton.addActionListener(new AboutButtonListener(this,
new AboutScreen()));
return aboutButton;
}