How do I avoid tagging css to the below code. I've tried a few things e.g. tried first:child but that didnt seem to work. I would just like the outer lis to be red not the second lis within the parent li
li {
color: red;
}
<ul>
<li>Tag this as red
<ul>
<li>
Dont' tag this as color red
</li>
</ul>
</li>
<li>Tag this as red
<ul>
<li>
Dont' tag this as color red
</li>
</ul>
</li>
</ul>
```