/* Reset default browser styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Set default font family and size */
body {
	font-family: Arial, sans-serif;
	font-size: 16px;
}

/* Style the header */
header {
	background-color: #333;
	color: #fff;
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

h1 {
	font-size: 24px;
}

nav ul {
	list-style: none;
	display: flex;
}

nav ul li {
	margin-left: 10px;
}

nav ul li a {
	color: #fff;
	text-decoration: none;
	padding: 10px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #333;
	z-index: 1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* Style the splash image */
#splash-image {
	background-image: url('splash-image.jpg');
	background-size: cover;
	background-position: center;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

h2 {
	font-size: 48px;
	color: #fff;
	text-align: center;
	text-shadow: 2px 2px 4px #000;
}