html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: black;
	overflow: hidden;
}

#container {
	width: 100vw;
	height: 100vh;
	position: relative;
}

#dvd {
	position: absolute;
	width: 30vw;
	height: calc(30vw * 9 / 16);
	overflow: hidden;
}

#dvd video {
	width: 100%;
	height: 100%;
	display: block;
}

#background-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Pacifico', cursive;
	font-size: 64px;
	color: #F8C8DC;
	opacity: 0.5; 
	pointer-events: none;
	user-select: none;
	text-align: center;
}

body.fullscreen #dvd {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	margin: 0;
	z-index: 100;
}

body.fullscreen #dvd-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#clip-date {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: monospace;
	font-size: 16px;
	color: white;
	background: rgba(0, 0, 0, 0.6);
	padding: 6px 12px;
	border-radius: 6px;
	z-index: 101;
	display: none;
}

body.fullscreen #clip-date {
	display: block;
}

body.fullscreen #background-text {
	display: none;
}