In the CSS code my class is ok but for some reason when I go to the Chrome dev tools I can see that media gets "triggered" on 600px but it doesn't override my CSS. Anyone know why?
.main__text{
color:red;
font-size: 2rem;
margin: 1rem 0 2rem 0;
}
@media (min-width: 600px) {
p{
font-size: 1rem;
}
}