In your custom CSS plugin, the ending bracket was mistakenly left off the media query @media screen and (min-width: 500px)
, causing all the CSS rules after it to be interpreted as part of the media query. A quick fix would be to delete all the CSS I suggested and rewrite it anywhere above the @media
line, but I also suggest trying to figure out where the missing bracket should be.