/* General body styling */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f7f9fc; /* soft background color */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; /* ensures full page centering */
}

/* Container for header + iframe */
.container {
	text-align: center;
}

/* Header styling */
header {
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
}

/* Iframe player styling */
iframe {
	width: 800px;
	height: 450px;
	border: none;
	border-radius: 10px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}
