*{box-sizing:border-box}
html,body{height:100%}
body{
	margin:0;
	background:#000;
	color:#fff;
	font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
	line-height:1.5;
}
.container{
	min-height:100vh;
	max-width:720px;
	margin:0 auto;
	padding:24px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
}
.logo{
	width:100%;
	max-width:450px;
	height:auto;
	display:block;
	margin:0 auto 20px auto;
}
.tagline{
	font-size:20px;
	margin:8px 0 16px 0;
	color:#e7e7e7;
}
.contact{
	font-size:18px;
	margin:0;
}
.contact a{
	color:#d4ff00;
	text-decoration:none;
	border-bottom:1px solid rgba(212,255,0,0.4);
}
.contact a:hover{
	text-decoration:underline;
} 