Can you help me modify the display of the p element inside the SR element with the #one id using CSS?
#one ?SHADOW-ROOT-QUERY-SELECTOR? p { display: none};
<div>
<p>My Website</p>
<div id="one">
<!--#shadow-root (open)-->
<div id="two">
<div id="three">
<p>Text</p>
</div>
</div>
</div>
</div>