So, I have been staring at and fiddling with this for hours and it’s driving me crazy. I’m working on adding media queries to a site I’m building. I have the first query working perfectly. However, as soon as I add the second query, nothing in it works. If I add the changes to the first query to test, they work just fine. However, nothing I put in the second query triggers no matter what. I’m sure I’m missing something obvious since I’ve been staring at it for too long. Any help is greatly appreciated. I’ve included the queries below.
@media only screen and (max-width: 1118px) {
.brand {
font-size: 3em;
}
nav a {
font-size: 1.25em;
}
}
@media only screen and (min-width: 100px) and (max-width: 425px) {
.brand {
font-size: 2em;
}
.cat-button {
display: none;
}
}