﻿body {
	display: flex;
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	height: 100vh; /* Full viewport height */
	margin: 0;
	background-color: #f0f0f0; /* Light background color */
	font-family: Arial, sans-serif;
}

.video-container {
	width: 80%; /* Set video width to 80% */
	max-width: 1200px; /* Optional: limit maximum width */
	background-color: #000; /* Background for better video contrast */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
	border-radius: 8px; /* Rounded corners */
	overflow: hidden; /* Hide overflow for rounded corners */
	position: relative; /* For positioning messages */
}

video {
	width: 100%; /* Ensure video fills the container */
	height: auto; /* Maintain aspect ratio */
	display: block; /* Remove default inline spacing */
}

.message {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	display: none; /* Hidden by default */
	z-index: 1000;
	text-align: center;
}
