I have this html code:
<div class="guide">
<h2><b style="font-size: 3vw">filler</b></h2>
<h1><b style="font-size: 3.2vw"> Who's cuter? Click to Choose.</b></h1>
</div>
and this is my css media query:
@media screen and (min-width: 700px) {
.guide {
font-size: 25px;
color: blue;
}
}
The color changes to blue but the font size doesn't. Any help is appreciated.