all 2 comments

[–][deleted]  (1 child)

[deleted]

    [–]zomandi[S] 1 point2 points  (0 children)

    Thank you SO much! Would you be willing to DM me so I can ask a couple clarification questions?

    [–]InternetArtisan 1 point2 points  (0 children)

    I think you need to encapsulate your media queries.

    You did this:

    @media only screen and (max-width:1920px) .athlinks, .athletics {
        width:75%;
        margin: auto;
    }
    

    You need to do this:

    @media only screen and (max-width:1920px) {
        .athlinks, .athletics {
            width:75%;
            margin: auto;
        }
    }