#landing-container {
	position: fixed; top: 0; left: 0;
	z-index: -1;
	width: 100vw; height: 100vh;
	overflow: hidden;
	background: var(--tablehead)
}

#buttons-block {
	pointer-events: none;
	-webkit-user-select: none; user-select: none;
	width: calc(100% + (var(--btn-width)*4)); height: 100%;
	margin-left: calc(-var(--btn-width));
}

#buttons-block-overlay {
	pointer-events: none;
	position: absolute; top: 0; left: 0;
	z-index: 2;
	width: 100%; height: 100%;
	background-image: linear-gradient(var(--tablerow2), rgba(0,0,0,0), rgba(0,0,0,0), var(--tablerow2));
}

.double img {
	width: calc(var(--btn-width) * 2);
	height: calc(var(--btn-height) * 2);
}

#landing-container header {
	position: absolute;
	/* center */
	top: 46%; left: 50%; transform: translate(-50%, -50%);
	width: 100vw;
	background: var(--tablerow2);
	text-align: center;
	padding: 1em 0 1.25em 0;
}

.double .enter {
	width: calc(var(--btn-width) * 2);
	height: calc(var(--btn-height) * 2);
}