@font-face {
	font-family: 'Suisse Intl';
	src: url('../fonts/SuisseIntl-Regular.otf') format('opentype'), 
		 url('../fonts/SuisseIntl.woff') format('woff'),
		 url('../fonts/SuisseIntl.woff2') format('woff2');
}
* {
/*	margin: 0;
	padding: 0;*/
	box-sizing: border-box;
	font-family: 'Suisse Intl';

}

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--fg);
}

a {
	text-decoration: none;
	color: inherit;
}
h1 {
	position: relative;
	display: flex;
	width: 100%;
	height: 100vh;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 10vw;
}
.preview {
	width:  33%;
	height: 33%;
}

.block {
	position: relative;
	display: block;
	width: 100%;
	/*min-height: 100vh;*/
	padding: 40px;
}

.gray {
	background: #bbb;
}

.wrap {
	position: relative;
	display: block;
	clear: none;
	float: left;
	width: calc(1080px *var(--iframe-w) );
	height: calc(1080px *var(--iframe-w) );
	overflow: hidden;
	padding: 10px;

}
.title {
	padding: 10px;
	color: white;
	overflow: hidden;
}

.letters-wrap {
	width: 100%;
	background: black;
	float: left;
	height: auto;
	position: relative;
	clear: both;
	background: black;
}
.letters {
	position: relative;
	display: block;
	width: 100%;
	background: black;
	margin: 0 auto;
	clear: both;
	float: left	;
	height: auto;
	/*max-width: 1000px;*/
}

.letter {
	position: relative;
	display: block;
	clear: none;
	float: left;

}

image {
	filter: grayscale(1);

}
video {
	width: 100%;
	position: relative;
	clear: both;
	float: left;
	filter: grayscale(1);
}
iframe {
	position: relative;
	display: block;
	/*width: calc(1080px / 25vw);*/

	/*zoom: 0.5;*/
	transform: scale( var(--iframe-w) ) ;
    -moz-transform: scale( var(--iframe-w) );
    -moz-transform-origin: 0 0;
    -o-transform: scale(var(--iframe-w));
    -o-transform-origin: 0 0;
    -webkit-transform: scale(var(--iframe-w));
    -webkit-transform-origin: 0 0;
}