After reducing the page width to 1500, I noticed that the code successfully removed the "about" section as intended. However, it seems to be ignoring the original display setting for the about small image. When loading the page, the about small image is still being displayed.
https://gyazo.com/813b8470136d3b68c4bece744a5dec9e
.aboutsmall {
display: none;
}
@media only screen and (max-width: 1500px) {
.about {
display: none;
}
.aboutsmall {
display: all;
}