body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
    	background: #DBE2DC;
    	color: #222;
}

h1 {
    	font-size: 40px;
}

header {
    	background: #335765;
    	color: white;
    	padding: 2rem;
    	text-align: center;
}

nav {
    	background: #74A8A4;
    	padding: 1rem;
    	text-align: center;
    	position: sticky;
    	top: 0;
    	border-bottom: 1px solid black;
    	border-top: 1px solid black;
}

nav a {
    	color: white;
    	margin: 0 1rem;
    	text-decoration: none;
    	font-weight: bold;
	padding: 6px;
	border: 1px solid transparent;
}

nav a:hover {
    	background: #14A8A4;
	border-radius: 4px;
	border: 1px solid #54807f;
}

.container {
    	max-width: 1400px;
    	margin: 2rem auto;
    	padding: 0 1rem;
}

.two-column-container {
    	display: grid;
    	grid-template-columns: 3fr 1fr; /* two equal columns */
    	gap: 2rem; /* space between columns */
    	align-items: center; /* align content at the center */
}

.two-column-container img {
    	width: 100%;
    	height: auto;
    	border: 5px solid black;
    	margin-top: 5px;
    
}

@media (max-width: 1000px) {
  	.hide {
    		display: none;
	}

	.centersmall {
		align-items: center;

  	}
  	.two-column-container {
    		display: block;
    		margin: 2rem auto;
    		padding: 0 1rem;
  	}
}


.section-title {
    	font-size: 2rem;
    	margin-bottom: 1rem;
    	border-left: 5px solid #111;
    	padding-left: 0.5rem;
}

.project {
    	background: #B6D9E0;
    	padding: 1.5rem;
    	border-radius: 8px;
    	margin-bottom: 1.5rem;
    	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.project h3 {
    	margin-top: 0;
}

footer {
    	background: #111;
    	color: white;
    	text-align: center;
    	padding: 1.5rem;
    	margin-top: 3rem;
}


div.gallery {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: flex-start;
}

div.gallery-item {
  	margin: 5px;
  	border: 1px solid #ccc;
}

div.gallery-item:hover {
  	border: 1px solid #777;
}

div.gallery-item img {
  	width: 250px;
  	height: auto;
	border: 2px solid black;
}

div.gallery-item div.desc {
  	padding: 15px;
  	text-align: center;
}
