If you want all elements with the class "menu-item" to have black text color, which CSS code would you use?
.menu-item { color: blue; }
menu-item { color: rgb(0, 0, 0); }
#menu-item { color: black; }
.menu-item { color: #000000; }