body.sketch {
	background-color: ivory;
}

.sketchHeader {
	color: #20170f;
	height: 40px;
	margin-top: auto;
	text-align: center;
	font-size: 100px;
	font-family: 'Nanum Brush Script';
}

.navbarSketch {
	display: flex;
	justify-content: center;
	background-color: ivory;
	overflow: hidden;
}

.navbarSketch a {
	float: left;
	color: #20170f;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	font-family: 'Courier Prime', monospace;
}

/* change link appearance on hover */
.navbarSketch a:hover {
    border-style: solid;
}

/* make current link a different color */
.navbarSketch a.active {
    border-style: solid;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 30px;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px; /* optional for rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* optional styling */
}