How to make this message flash on the screen, stay centered and how to change the message color?
#include <iostream>
#include <cstdlib>
#include <windows.h>
using namespace std;
string mensagem;
int main(int argc, char *argv[]) {
cout << "Digite um palavara: " ;
cin >> mensagem;
cout << "***************************" "\n";
cout << "***************************" "\n";
cout << "*** ***" "\n";
cout << "*** ***" "\n";
cout<< "***""\t"<<mensagem<<"\t***""\n";
cout << "*** ***" "\n";
cout << "*** ***" "\n";
cout << "***************************" "\n";
cout << "***************************" "\n";
system("PAUSE");
return EXIT_SUCCESS;
}