1) To create a webpage, I relied on Bootstrap. 2) In the CSS FILE, I implemented the following media query to supersede the Bootstrap design.
@media screen and (min-width: 500px){
body {color: #ccc;}
}
Despite this, the body color remains unchanged after reaching the breakpoint. a) Is it possible to override Bootstrap styling using a media query in the CSS file? b) What could be the reason behind this issue?