Currently, I am utilizing media queries to adjust the appearance of my website based on different screen sizes...
Below is an excerpt of my HTML code:
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" media="screen and (max-width: 600px)" href="styles/style.css"/>
Here is a snippet of my CSS code:
@media screen and (max-widht: 650px) {
.projects-grid{
float: none;
width: 100%;
grid-template-columns: 100%;
}
}