Button submitButton = new Button("Submit Your Guess");
submitButton.setActionCommand("submit guess");
submitButton.setForeground(Color.BLACK);
submitButton.setBackground(Color.GREEN);
submitButton.setWidth(new Extent(200));
submitButton.addActionListener(this);
layoutColumn.add(submitButton);
Button newGameButton = new Button("Start a New Game");
newGameButton.setActionCommand("new game");
newGameButton.setForeground(Color.WHITE);