body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: rgb(255, 255, 255);
	margin: 0;
	padding: 0;
}

header {
	padding: 40px;
	text-align: center;
}

.video-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 100vh;
}

main {
	min-height: 100vh;
	color: white;
	font-size: 20px;
	padding: 20px 20% 20px 20%;
	text-align: center;
	position: relative;
	z-index: 2; /* Ensures content stays above video */
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 1;
	opacity: 0.4; /* Simple transparency */
	background: transparent;
	pointer-events: none;
	width: 100%;
	height: 100%;
}

.bg-colour {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: -1;
	background-color: #00427a;
	pointer-events: none;
	width: 100%;
	height: 100%;
}

a {
	all: unset;
}

.iframe-container {
	width: 100%;
}

.tiles-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.tile {
	flex: 1 0 200px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 10px 10px;
	transition: transform 0.3s ease-in-out;
	box-sizing: border-box;
	/* Ensures padding doesn't break the width */
	background-color: grey;
	font-size: 18px;
	max-width: 400px;
	user-select: none;
	cursor: pointer;
}

.tile-img-container {
	background-color: white;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tile-content {
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tile:hover {
	transform: scale(1.05);
}