body {
	margin: 0;
	padding: 0;
	background: url('background.jpg') no-repeat center center fixed;
	background-color: black;
	color: white;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

button {
	font-size: 18px;
	padding: 10px 20px;
	border: none;
	background-color: #007bff;
	color: white;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #0056b3;
}

video {
	width: 100%;
	max-width: 400px;
	margin-top: 10px;
	border: 2px solid white;
	border-radius: 10px;
}
.play-btn {
	font-size: 48px;
	width: 100px;
	height: 100px;
	border: none;
	background-color: #007bff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
	background-color: #0056b3;
}