The basics of css specificity
#my-id -> 1 0 0
.my-class -> 0 1 0
button -> 0 0 1
#my-id .my-class -> 1 1 0
id | class | type
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
.my-class -> 0 1 0
button -> 0 0 1
#my-id .my-class -> 1 1 0
id | class | type
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity