static void Main(string[] args)
        {
            // Set new windows size
            ApplyWindowSize();

            // Run Intro()
            Intro();

            // Call MainInterface Class to use the functions within it.
            MainInterface IF = new MainInterface();

            // Call and execute function that displays the interface.
            IF.Int();
        }
        static void Main(string[] args)
        {
            // Set new windows size
               ApplyWindowSize();

               // Run Intro()
               Intro();

               // Call MainInterface Class to use the functions within it.
               MainInterface IF = new MainInterface();

               // Call and execute function that displays the interface.
               IF.Int();
        }