Hello There,
The code should have work unless otherwise there are other custom css that may have in conflict with the given code. I have check your css on the page and it seems that there are orphaned curly braces.

Please make sure that all your css blocks were properly closed. The best css practice should have look like this:
element {
/* your styling here */
}
#element-ID {
/* your styling here */
}
.element-class {
/* your styling here */
}
/* for smaller screens */
@media(max-width: XXpx){
element {
/* your styling here */
}
#element-ID {
/* your styling here */
}
.element-class {
/* your styling here */
}
}
Hope this helps.