body {
    font-family: Georgia, sans-serif;
	color: #444;
	background-color: #f4f4f4;
}

section {
	color: #444;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
	color: #444;
}

.project-card a {
    display: block;
    text-decoration: none;
    color: #444;
}

.project-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
	color: #444;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding-top: 1rem;
	color: #444;
	text-align: center;
}

.project-tags {
    display: flex;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin-top: .75rem;
    flex-wrap: wrap;
	color: #444;
}


header {
    background: #f4f4f4;
    color: #444;
    padding: 5px 0;
	margin: 10px 0 10px;
    text-align: center;
}

h1 {
	margin: 10px 0 10px;
	color: #444;
}

p {
	color: #444;
}

nav {
    display: flex;
    justify-content: center;
    background: #f4f4f4;
}

nav a {
    color: #444;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}	


@media (max-width: 600px) {
	nav a {
padding: 7px 10px;
/* font-size: 12px; */
	}
	
	.responsive-image {
		object-position: 20% 80%;
	}
}
nav a:hover {
    background: #ddd;
    color: #444;
}

/* basic section */
section {
    padding: 4px;
}

/* added to have image always align with screen width */
.responsive-img {
	width: 100%;
	height: auto;
}

/* flex containers, items, etc. ... */
section.flex-container {
	display: flex;
	padding: 20px;
}

.flex-item {
	padding: 15px;
	background-color: #fff;
	margin: 10px;
	border: 1px solid #ddd;
}

section.flex-container p {
	margin: 0;
	padding: 10px;
	background-color: #f0f0f0;
}

.site-title {
}

.site-title:hover {
	color: #444;
	text-decoration: underline;
}

.site-title:link,
.site-title:visited {
	color: #444;
	text-decoration: none;
}