How to change GUI label size

i have looked everywhere but no solution has worked so i am hoping one of you can help me and thank you in advance. The text is too small and i want it lager but don’t know how.

Here is my code:

void OnGUI()
{

	GUI.color = Color.red;
	GUILayout.Label("Score: " + score.ToString());
	GUILayout.Label("Highscore: " + highscore);
}

i am newbie at unity still and some tutorials i watched used this method