body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

header {
	background-color: #333;
	color: white;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

nav ul {
	list-style: none;
	display: flex;
	flex-direction: row;
}

nav ul li {
	margin: 0 10px;
}

nav ul li a {
	color: white;
	text-decoration: none;
}

section {
	padding: 50px;
}

section h2 {
	margin-top: 0;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}

.photo-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

form label {
	display: block;
	margin-top: 10px;
}

form input,
form textarea {
	display: block;
	margin-top: 5px;
	padding: 10px;
	width: 100%;
	border: none;
	border-radius: 5px;
}

