body
{
	display: block;
	background-color: lightblue;
	padding: 0;
	margin: 0;
	font-family: Monaco;
	line-height: 1.6;
}
header
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background-color: lightblue;
	max-width: 900px;
	margin: 0 auto;
}
h1
{
	color: black;
	margin: 0;
	font-family: Monaco;
	font-size: 32px;
}
p
{
	color: #333333;
	margin: 15px 0;
	font-size: 16px;
}
a
{
	color: #0066cc;
	text-decoration: underline;
}
a:hover
{
	color: #004499;
}
.nav-buttons
{
	display: flex;
	gap: 15px;
	align-items: center;
}
.button
{
	display: inline-block;
	padding: 10px 20px;
	background-color: white;
	border: 2px solid black;
	color: black;
	text-decoration: none;
	font-family: Monaco;
	font-size: 14px;
	transition: all 0.2s ease;
}
.button:hover
{
	background-color: black;
	color: white;
}
main
{
	padding: 0 40px 40px 40px;
	max-width: 900px;
	margin: 0 auto;
}
.project-list
{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
}
.project-button
{
	display: inline-block;
	padding: 15px 25px;
	background-color: white;
	border: 2px solid black;
	color: black;
	text-decoration: none;
	font-family: Monaco;
	font-size: 16px;
	transition: all 0.2s ease;
	width: fit-content;
}
.project-button:hover
{
	background-color: black;
	color: white;
}