/* Major Elements */

html {
	min-height: 320px;
	scroll-behavior: smooth;
}

body {
	background-color: black;
	font-family: arial;	
	overflow: hidden;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	body {
		overflow: auto;
	}
}

.tile {
	position: relative;
	display: block;
	white-space: nowrap;
	width: calc(100vw);
	height: calc(100vh);
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.tile {
		white-space: auto;
		height: auto;
	}
}

.subtile {
	display: inline-block;
	overflow-y: hidden;
	width: 100%;
	height: calc(80vh);
	margin-top: calc(10vh);
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.subtile {
		display: block;
		height: auto;
		margin-top: 20px;
	}
}

.subtile img {
	display: block;
	width: calc(80vw);
	margin-left: auto;
	margin-right: auto;
	z-index: -1;
}

.subtile video {
	display: block;
	width: calc(80vw);
	margin-left: auto;
	margin-right: auto;
	z-index: -1;
}

/* Navigation Elements */

.description {
	position: absolute;
	display: none;
	overflow: hidden;
	width: 100vw;
	height: 100vh;	
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 2;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.description {
		position: fixed;
		height: 120vh;	
	}
}

.description dl {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	max-width: 80vw;
	margin-left: auto;
	margin-right: auto;
	color: white;
	font-weight: bold;
	font-size: 22px;
	border: solid white 2px;
	white-space: normal;
	padding: 20px;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.description dl {
		top: 1vh;
		width: 80vw;
		max-width: 80vw;
		max-height: 80vh;
	}
}

.arrow-wide-up {
	position: absolute;
	background-image: url("img/arrow_wide_up.png");
	background-repeat: no-repeat;
	background-size: calc(8vw) calc(8vw / 4);

	width: calc(8vw);
	height: calc(8vw / 4);
	
	left: 46vw;
	top: 1vh;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.arrow-wide-up {
		display: none;
	}
}

.arrow-wide-down {
	position: absolute;
	background-image: url("img/arrow_wide_down.png");
	background-repeat: no-repeat;
	background-size: calc(8vw) calc(8vw / 4);

	width: calc(8vw);
	height: calc(8vw / 4);
	
	min-width: 100px;
	
	left: 46vw;
	bottom: 1vh;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.arrow-wide-down {
		display: none;
	}
}

.arrow-wide-left {
	position: absolute;
	background-image: url("img/arrow_wide_left.png");
	background-repeat: no-repeat;
	background-size: calc(8vw / 4) calc(8vw);

	width: calc(8vw / 4);
	height: calc(8vw);
	
	left: 1vw;
	top: 46vh;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.arrow-wide-left {
		display: none;
	}
}

.arrow-wide-right {
	position: absolute;
	background-image: url("img/arrow_wide_right.png");
	background-repeat: no-repeat;
	background-size: calc(8vw / 4) calc(8vw);

	width: calc(8vw / 4);
	height: calc(8vw);
	
	right: 1vw;
	top: 46vh;
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1366px) {
	.arrow-wide-right {
		display: none;
	}
}

.mail {
	display: block;

	background-image: url("img/mail.png");
	background-repeat: no-repeat;
	background-size: 7vw 4.375vw;

	width: 7vw;
	height: 4.375vw;

	margin-left: auto;
	margin-right: auto;
	z-index: -1;
}

/* Style Elements */

.hidden {
	visibility: hidden;
}

.magnify {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	max-height: 100vh;
	z-index: 1;
	border: solid white 2px;
	background-color: white;
}

.magnify img {
	width: 100vw;
	border: solid blue 2px;
}

.magnify .arrow-wide-left {
	display: none;
}

.magnify .arrow-wide-right {
	display: none;
}

.magnify .arrow-wide-up {
	display: none;
}

.magnify .arrow-wide-down {
	display: none;
}
