html, body {
	background-color: rgb(45, 45, 45);
	color: white;
	width: 100%;
	font-family: sans-serif;
	font-size: 1em;
}

body:before {
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 125%;
	background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/aa/Philips_PM5544.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	opacity: 0.05;
}

.channels {
	position: absolute;
	display: flex;
	padding: 30px;
	gap: 30px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	align-content: center;
}

#vod {
	left: 0;
	right: 75%;
	top: 0;
	bottom: 0;
	flex-direction: column;
}

#live {
	left: 25%;
	right: 0;
	top: 0;
	bottom: 0;
	flex-direction: row;
}

#replay {
	top: 100%;
	bottom: -25%;
	left: 0;
	right: 0;
	z-index: 10;
}

#down {
	position: fixed;
	bottom: 0;
	left: 50%;
	right: 50%;
	font-size: 70px;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
	z-index: 1;
	transition: opacity 0.2s;
}

body.scrolled #down {
	opacity: 0;
}

a.channel {
	width: 150px;
	height: 90px;
	position: relative;
	background: rgb(191, 191, 191);
	border-radius: 20px;
	box-shadow: 5px 5px rgba(205, 205, 205, 0.249);
	display: flex;
	align-items: center;
	justify-content: center;
}

a.channel:hover {
	background: rgb(232, 232, 232);
}

a.channel img {
	width: 90%;
	max-width: 90%;
	max-height: 90%;
}

.legal {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 20;
	margin: 10px;
	padding: 0;
	font-size: 0.7em;
	text-align: right;
}

.legal, .legal a {
	color: #4e4e4e;
}