@font-face {
	font-family: "darkergrotesque";
	src: url(DarkerGrotesque-VariableFont_wght.ttf) format("truetype");
	font-weight: 100 900;
}

body {
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: "darkergrotesque";
}

a {
	color: white;
}

p {
	margin-block-start: 0.5rem;
	margin-block-end: 0.5rem;
}

h1 {
	margin: 0px;
	margin-block-start: 0px;
	margin-block-end: 0px;
	line-height: 0.6;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
}

h2 {
	margin: 0px;
	margin-block-start: 0px;
	margin-block-end: 0px;
	line-height: 1.2;
	display: inline-block;
}

.container {
	width: 100svw;
	height: 100svh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	position: relative;
}

.navigation {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	width: 100vw;
	background-color: rgb(0, 0, 0);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1rem;
	padding-right: 1rem;
	box-sizing: border-box;
}

.title-container {
	color: white;
	font-size: 1.5rem;
}

.iframe-demo {
	flex-grow: 1;
	border: none;
	margin: 0;
	padding: 0;
}

.footer {
	display: flex;
	justify-content: flex-end;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-bottom: 1rem;
	align-items: center;
}

@media only screen and (max-width: 500px) {
	.mobile-blocker {
		position: fixed;
		width: 100vw;
		height: 100vh;
		padding-left: 3rem;
		padding-right: 3rem;
		top: 0;
		left: 0;
		background-color: rgb(0, 0, 0);
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 999;
		text-align: center;
		box-sizing: border-box;
	}
}

@media only screen and (min-width: 501px) {
	.mobile-blocker {
		display: none;
	}
}
