/*
Theme Name: Full Screen Video Theme
Author: Your Name
Description: A simple full-screen background theme with a centered YouTube video iframe.
Version: 1.0
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
}

body {
	background: url("screenshot.png") no-repeat center center fixed;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-container {
	position: relative;
	width: 80%;
	max-width: 800px;
	height: 45vw; /* Maintains 16:9 aspect ratio */
	max-height: 450px;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
}
