html, body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	background-color: #003b6f;
	background-image: url('bg.png');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.header {
	text-align: center;
	padding: 30px 0;
	color: #fff;
	margin-top: 20px;
}

.header .logo {
	width: 250px;
	margin-bottom: 30px;
	margin-top: 20px;
}

.header h1 {
	font-size: 5em;
	font-weight: 700;
	margin: 0;
}

.container {
	display: flex;
	flex-grow: 1;
	width: 100%;
}

/* Left Column */
.left-column {
	flex: 1;
	background-image: url('path_to_mel_arnold_image.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* Right Column */
.right-column {
	flex: 1;
	background-image: url('path_to_frank_caputo_image.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* Content styling */
.content h1 {
	font-size: 3em;
	font-weight: 700;
	margin: 0;
}

.content h2 {
	font-size: 1.5em;
	font-weight: 500;
	margin-top: 10px;
	color: #00ADF0;
}

.meet-candidate-btn {
	background-color: #d80027;
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 1.2em;
	font-weight: 700;
	margin-top: 20px;
	cursor: pointer;
	border-radius: 25px;
	transition: background-color 0.3s ease;
}

.meet-candidate-btn:hover {
	background-color: #a7001f;
}

.candidate-image img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 5px solid #fff;
	margin-bottom: 20px;
}

.riding-check {
	margin-bottom: 40px;
}

.footer {
	text-align: center;
	padding: 00px;
	color: #fff;
	font-size: 0.7em;
	width: 100%;
	margin-top: auto;
}

a:link {
	color: #00ADF0;
	text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

@media (max-width: 1200px) {
	.header h1 {
		font-size: 3em;
	}
}

@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}

	.left-column, .right-column {
		height: auto;
		margin-top: 30px;
		margin-bottom: 30px;
		padding: 20px;
	}

	.content h1 {
		font-size: 2.5em;
	}

	.content h2 {
		font-size: 1.2em;
	}

	.meet-candidate-btn {
		padding: 10px 25px;
		font-size: 1em;
	}

	.header h1 {
		font-size: 2em;
	}

	.candidate-image img {
		width: 150px;
		height: 150px;
	}

	.footer {
		padding: 10px;
		font-size: 0.5em;
		text-align: center;
		width: 100%;
	}
}
