body, html {
    background-color: rgb(0, 0, 0);
	height: 100%;
	width: 100%;
	margin: 0;
}

p {
	color: white;
	text-align: center;
}

.container {
	height: 95%;
	display: flex;
	align-items: center;
	justify-content: center;
}

video {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
	height: 100%;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 600px){
	body, html {
		background-color: white;
		margin: 0;
	}
	
	img {
		width: 100%;
	}
}

@media (prefers-color-scheme: dark) {
	body {
		color:#fff;
		background:#fff;
	}
}