@font-face {
	font-family: "Futura Bold";
	src: url("futura-bold.ttf") format("truetype");
}

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 100%;
}

body {
	overflow: hidden;
}

time {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75vw;
	height: 75vh;
	font-family: "Futura Bold";
	font-size: 10vh;
	background-color: black;
	color: white;
	text-align: center;
	line-height: 75vh;
	text-transform: uppercase;
	transition: 1s;
	cursor: pointer;
}

.opened {
	top: 100%;
	left: 100%;
}

iframe {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75vw;
	height: 75vh;
	box-shadow: 15px 15px 30px -15px black;
	border: 30px inset Burlywood;
}