To reset/remove CSS styles for element only, we set the all property.
For instance, we write
#someselector {
all: initial;
}
#someselector * {
all: unset;
}
to select the element with ID someselector and the elements inside.
We use all: initial; to reset the styles for the element with ID someselector.
And we use all: unset; to reset the styles for the elements inside the element with ID someselector.