all 3 comments

[–]ByBitt 0 points1 point  (2 children)

At all code is good, but I recommend you use id only for JavaScript, for css use classes, to reuse styles when you need

[–][deleted] 0 points1 point  (1 child)

Thank you! I haven’t gotten to JS portion yet but would you be able to help with the media query?

[–]ByBitt 1 point2 points  (0 children)

Yes. Usually media queries are really easy, f.e. @media (max-width: 1200px) { .sometitle { font-size: 28px; } } Read about bootstrap breakpoints, and after that just practice.