JPanel panel = new JPanel();
JLabel winner = new JLabel(result);
winner.setFont(new Font("Tahoma", Font.CENTER_BASELINE, 18));
JButton replayButton = new JButton(Constants.REPLAY_BUTTON);
replayButton.addActionListener(new ReplayButtonListener(this, new PlayScreen()));
replayButton.setFont(new Font("Tahoma", Font.CENTER_BASELINE, 18));
replayButton.setMargin(new Insets(10, 62, 10, 62));
JButton exitButton = new JButton(Constants.EXIT_BUTTON_LABEL);
exitButton.addActionListener(new ExitButtonListener(this));