* {
	outline: none;
}

html, body {
	height: 100vh;
	margin: 0;
	overflow: hidden;
}

body {
	background-image: url("media/bg_image.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	z-index: -100;
}

.detailsButton {
	position: absolute;
	top: 40px;
	left: 40px;
	font-size: 20px;
	color: #0000AA;
	padding: 20px 25px;
	border-radius: 5px;
	box-shadow: grey 1px 1px 5px 2px;
	cursor: pointer;
	background-color: white;
	transition: .5s ease-in-out;
}

.detailsButton:hover {
	opacity: 0.85;
	transition: .5s ease-in-out;
}