.widephoto
{
	width: 100vw; /* Full width */
	height: 100vh; /* Full height */
	object-fit: cover; /* Ensures the image covers the whole area */
	object-position: center; /* Keeps the image centered */
}
.headline
{
	position: absolute;
	top: 100px;
	width: 100%;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 50pt;
	font-weight: normal;
	color: #FFFFFF;
	padding: 30px 30px 30px 30px;
}
.image-container 
{
	display: block;
	width: 100%;
}
#main-image {
	width: 100%;
	display: block;
}

.scroll-down-button {
	position: fixed; /* Keep the button fixed in place */
	bottom: 20px; /* Position at the bottom of the screen */
	left: 50%;
	transform: translateX(-50%);
	z-index: 100; /* Ensure it's always above content */
	cursor: pointer;
}

.scroll-down-button img {
	height: auto;
}


@media only screen and (max-width: 40em)  /* max-width 640px, mobile-only styles */
{
	.headline
	{
		font-size: 30pt;
		top: 100px;
	}
	.main-heading
	{
		font-size: 20px;
	}
	.sub-heading
	{
		font-size: 16px;
	}
	.pagetitle
	{
		top: 50px;
		font-size: 20pt !important;
		font-weight: normal;
		color: #FFFFFF;
		padding: 30px 30px 30px 30px;
	}
}
@media only screen and (min-width: 40.063em) and (max-width: 64em)  /* min-width 641px and max-width 1024px, medium screen-only styles */
{
	.headline
	{
		font-size: 40pt;
	}
	.pagetitle
	{
		top: 50px;
		font-size: 30pt !important;
		font-weight: normal;
		color: #FFFFFF;
		padding: 30px 30px 30px 30px;
	}
}
