@charset "utf-8";
/* CSS Document */

html, body	{
	height: 100%; 
	width: 100%; 
	margin: 0; 
	padding: 0; 
}

body {
	background-color: #000; /* restore black background */
	color: #fff; /* default text color for contrast */
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	text-align: center; /* This is used to center block level elements in Internet Explorer.*/
}

/* Image container. You need this. */
#bg	{
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: 0; 
	width: 100%; 
	height: 100%; 
	overflow: hidden; 
}

	/* Image wrapper. You'll need this one too. */
	#img	{
		position: relative; 
		width: 200%; 
		height: 200%; 
		top: -50%; 
		left: -50%; 
		overflow: hidden; 
	}
	
		/* The background-image itself. You'll definitely want this one. */
		#img img	{
			display: inline-block; 
			position: relative; 
			min-width: 75%; 
			min-height: 75%; 
		}

/* This is the content div. It's positioned on top of the image container.*/
#content	{
	position: absolute; 
	top: 0; 
	left: 0; 
	z-index: 10; 
	padding: 80px 0; /* Keep padding-left and padding-right at 0, otherwise you can't use width: 100%. */
	width: 100%; 
	height: auto; 
}

	/* Place content in here. */
	#container	{
		position: relative; /* This is necessary. */
		margin: 0 auto; /* You auto for margin-left and margin-right if you want to center the div. */
		padding: 60px 20px; 
		width: 600px; 
		min-height: 200px; 
		background: rgba(255, 255, 255, 0.7); 
		-moz-border-radius: 10px; 
		border-radius: 10px; 
		text-align: left; 
	}
	
	/* This is not functional, just stuff I wanted in. */
		#validation	{
			position: absolute; 
			right: 0; 
			top: 10px; 
			z-index: 10; 
		}
		
			#validation a	{
				display: inline-block; 
				position: relative; 
				margin: 3px; 
				padding: 3px 5px; 
				border-radius: 4px; 
				-webkit-border-radius: 4px; 
				-moz-border-radius: 4px; 
				box-shadow: 0px 0px 3px #888; 
				-webkit-box-shadow: 0px 0px 3px #888; 
				-moz-box-shadow: 0px 0px 3px #888; 
				text-decoration: none; 
				color: #2c648a; 
				background: #fff; 
			}
			#validation a:hover	{
				background: #2c648a; 
				color: #fff; 
			}
						
			
div.spacer	{
	position: relative; 
	width: 100%; 
	clear: both; 
}

img	{
	border: none; 
}

	
	
/* --- Appended from index.html (UI components) --- */
.at-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 20vh;
}
.at-item {
	color: white;
	font-weight: bold;
	font-size: 3em;
	/* run the existing focus-in-contract (letter-spacing/blur) and a fly-in translate/opacity animation */
	-webkit-animation: focus-in-contract 1s linear 0s 1 normal both, fly-in 0.9s cubic-bezier(0.22,1,0.36,1) 0s 1 both;
	animation: focus-in-contract 1s linear 0s 1 normal both, fly-in 0.9s cubic-bezier(0.22,1,0.36,1) 0s 1 both;
}
@keyframes focus-in-contract {
	0% {
		letter-spacing: 4em;
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		filter: blur(0);
		opacity: 1;
	}
}

.centered-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
}

/* Gradient text spectrum used by header */
:root {
	--spectrum-start: #3399FF;
	--spectrum-mid1: #0073CF;
	--spectrum-mid2: #005AA3;
	--spectrum-mid3: #00B5F0;
	--spectrum-end: #33CCFF;
}

.seth-text-spectrum {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	font-size: 3.33rem;
	font-weight: 800;
	background: linear-gradient(135deg,
		var(--spectrum-start) 0%,
		var(--spectrum-mid1) 20%,
		var(--spectrum-mid2) 40%,
		var(--spectrum-mid3) 60%,
		var(--spectrum-end) 80%,
		var(--spectrum-start) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	background-size: 200% auto;
	animation: gradient-flow 4s linear infinite reverse;
}

@keyframes gradient-flow {
	0% { background-position: 0% center; }
	100% { background-position: 200% center; }
}

@keyframes fly-in {
	0% {
		transform: translateY(-30px);
		opacity: 0;
	}
	60% {
		transform: translateY(6px);
		opacity: 1;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.smileyface {
	width: 300px;
	height: 300px;
	position: relative;
	border-radius: 150px;
	display: block;
	background: #ffe632;
	background: -webkit-gradient(linear, left top, left bottom, from(#fffe8d), to(#f6d23e));
	background: -moz-linear-gradient(top, #fffe8d, #f6d23e);
	box-shadow: inset 0px -14px 14px rgba(0,0,0,.3), 0px 2px 20px rgba(0,0,0,.6);
}

.eyes {
	width: 50px;
	height: 80px;
	background: #222;
	border-radius: 100px/160px;
	position: absolute;
	top: 40px;
	box-shadow: 0 2px 0 rgba(255,255,255,0.8);
}
.lefteye { left: 75px; }
.righteye { right: 75px; }

.smile {
	width: 200px;
	height: 70px;
	border: 10px solid #222;
	border-top: 0;
	background: rgba(0,0,0,0);
	border-radius: 0 0 120px 120px / 0 0 90px 90px;
	position: absolute;
	bottom: 50px;
	left: 38px;
	box-shadow: 0 2px 0 rgba(255,255,255,0.8);
}

.corner {
	width: 10px;
	height: 30px;
	background: #222;
	border-radius: 100px/160px;
	position: absolute;
	top: -12px;
	transform: rotate(65deg);
	left: -12px;
}
.corner.right { left: 202px; transform: rotate(-65deg); }



