/**
* Instantiates variables and enforces properties in connection with the main containers of the frame.
*/
private void buildConfigureMainContainers(){
//Create the contentpane JPanel(bgPanel) of the frame, the root container for all following elements
bgPanel = new CustomMainPanel(Constants.MAIN_BACKGROUND_IMAGE_PATH, Constants.REGULAR_TILE_IMAGE_PATH);
bgPanel.setLayout(new BoxLayout(bgPanel, BoxLayout.Y_AXIS));
setContentPane(bgPanel);
contentPanel = new JPanel();
contentPanel.setLayout(new BoxLayout(contentPanel, BoxLayout.X_AXIS));