If you take a look at the website www.markallanholley.com, you will notice that the robot-girl image on the right is not responsive. I have tried coding what I thought was the correct way to make it responsive, but unfortunately, it's not working. I would appreciate it if someone could review it.
I am confident that the CSS is correctly targeting the HTML because I conducted a test by changing the background color to green and it worked. However, when I removed that line of code, the issue with the responsive image persisted.
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
// More CSS styles...
// Link to Google Fonts
<link href="https://fonts.googleapis.com/css2?family=Forum&family=Patua+One&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
// HTML Content
<div class="container">
// More HTML content...
</div>