Is it just me or does anyone else experience CSS behaving differently on a remote EC2 server compared to a local server? When I load the page and inspect it, I notice that different CSS rules are being applied. I've already executed collectstatic and here is the code in my main.css:
div.wrapper-home h2 {
font-size: 24px;
color: #FFFFFF;
text-align: center;
font-family: "Arimo", cursive, sans-serif;
}
While it works perfectly on my local machine, the remote server seems to only apply the CSS for h2 and not for the class wrapper-home. Can anyone point me in the right direction to figure out what I might be missing?