I've been encountering an issue with one of the media queries on my website. Specifically, the query targeting a div in the footer is not working as expected. I'm wondering if there's a problem with how I've written the notation?
@media only screen and (min-width: 500px) and (max-width: 1000px) {
.twitterbutton {
background-size: 50%;
}
}
The default background size is set at 100%, but it seems to be getting distorted on certain displays. Any insights into why this might be happening? Appreciate any help you can provide, thank you!