@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;
}



@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;
	}
}

/* Overlay for one-click clipboard paste button */
.clipboard-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none; /* toggled via JS */
	align-items: center;
	justify-content: center;
	z-index: 900;
	pointer-events: none;
}

.clipboard-overlay button {
	pointer-events: auto;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	background-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	backdrop-filter: blur(10px);
}

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

.footer-paste-btn {
	pointer-events: auto;
	padding: 0.35rem 0.9rem;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.85rem;
	color: #fff;
}

.footer-paste-btn:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

