html, body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;

	font-family: 'Roboto', sans-serif;
	text-decoration: none;
}

.edge-to-edge-hero-image {
	position: relative;
	background-image: url('/sffcompetitions/assets/images/football-pitch.jpg');
	background-size: cover;
	background-position: center -150px;
	height: 140px;
	/*
	display: flex;
	justify-content: center;
    align-items: center;
	*/
}

.edge-to-edge-hero-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5); /* Adjust as needed */
}

.edge-to-edge-hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);

	display: flex;
	justify-content: center;
	align-items: center;
	/*height: 100%;*/
}

.edge-to-edge-hero-text {
	font-weight: bold;
	font-size: 2.8rem;
	color: white;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.edge-to-edge-hero-logo {
	width: 5rem;
}


.topnav {
	overflow: hidden;
	background-color: #333;
}

.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 1rem 1.5rem;
	font-size: 2.2rem;
	font-weight: bold;
	text-decoration: none;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav a.active {
	background-color: #ad9e04;
	color: white;
}

.topnav .icon {
	display: none;
}

@media screen and (max-width: 800px) {
	.topnav a:not(:first-child) {
		display: none;
	}

	.topnav a.icon {
		float: right;
		display: block;
	}
}
  
 @media screen and (max-width: 800px) {
	.topnav.responsive {
		position: relative;
	}

	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}

