Seeking advice on optimizing my site for mobile view. While the wide-screen monitor display is fine, issues arise when the browser size is reduced, causing sections to appear messy in mobile view. Any suggestions or tips would be greatly appreciated!
Visit my site here
Below is the CSS code snippet related to the project section:
/* project section */
#projects {
background: linear-gradient(120deg, transparent , goldenrod);
}
#projects .projects{
flex-direction: column;
max-width: 1200px;
margin: auto;
padding: 100px 0;
}
#projects p{
color: #000;
}
... (CSS code continues)