/**
 * Styles.
 * @version 1.0.0
 */
*,*::before,*::after{box-sizing:border-box;}*{margin:0;}html,body{height:100%;}img,picture,video,canvas,svg{display:block;max-width:100%;}input,button,textarea,select{font:inherit;}p,h1,h2,h3,h4,h5,h6{margin-bottom:1rem;overflow-wrap:break-word;}#root,#__next{isolation:isolate;}

/* special-elite-regular - latin */
@font-face {
	font-weight: 400;
	font-family: "Special Elite";
	font-style: normal;
	src: local(""),
		 url('fonts/special-elite-v18-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('fonts/special-elite-v18-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
	--heading-font: "Crimson Text", serif;
	--body-font: "Special Elite", cursive;
	--red: #db3539;
	--red-dark: #bc2125;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	overflow-y: auto;
	color: white;
	font-weight: 400;
	font-size: 1.2rem;
	font-family: var(--body-font);
	line-height: 1.625;
	text-align: center;
	background: #090909 url(bg.jpg) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}

.logo-image {
	max-width: 260px;
	margin: 0 auto 44px;
}

h1 {
	text-align: center;
}

p:not(:last-child) {
	margin-bottom: 24px;
}

.site {
	width: 100%;
	max-width: 65ch;
	margin: auto;
	padding: 6vh 16px;
}

.tv {
	--img-width: 1157;
	--img-height: 802;
	--view-top: 92;
	--view-right: 300;
	--view-bottom: 94;
	--view-left: 86;
	position: relative;
	width: 100%;
	margin-bottom: 24px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 0 64px 24px rgba(255, 255, 255, 0.3);
	aspect-ratio: calc(var(--img-width) / var(--img-height));
}

.tv::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: url(tv.png);
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 4px;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	pointer-events: none;
	content: "";
}

.tv iframe {
	/* width: calc(100% - (100% / (1157 / 386))); */
	width: 100%;
	height: 100%;
	max-width: calc(100% - (100% / (var(--img-width) / (var(--view-left) + var(--view-right)))));
	max-height: calc(100% - (100% / (var(--img-height) / (var(--view-top) + var(--view-bottom)))));
	margin-top: calc(100% / (var(--img-width) / var(--view-top)));
	margin-left: calc(100% / (var(--img-width) / var(--view-left)));
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	padding: 18px 20px 14px;
	color: white;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 1px;
	white-space: normal;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: none;
	background: var(--red);
	border: none;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.button:hover,
.button:focus {
	color: white;
	background: var(--red-dark);
	box-shadow: 0 0 24px 8px rgba(255, 6, 6, 0.3);
}
