@font-face 
{
  font-family: ThirdEye;
  src: url(ProtestStrike-Regular.ttf);
}
:root 
{
	/* --bg: #8E828F; */
	--bg: PaleGoldenrod;
}
*{padding: 0; margin: 0; box-sizing: border-box; font-family: ThirdEye;}
header > img {max-width: 95%}
body {background-color: var(--bg);}
iframe {border-radius: 10px;}
body > main
{
	display: flex;
	justify-content: center;
	align-items: center;
	/* gap: 20px; */
	margin: 50px auto;
	/* max-width: 1000px; */
	max-width: 75%;
	background-color: white;
	border-radius: 10px;
	padding: 50px;
	box-shadow: 0 0 5px #666;
}
header 
{
	align-self: flex-start;
	flex: 1;
}
section 
{
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 2;
}
form 
{
	display: flex;
	align-self: center;
	gap: 8px;
	flex-direction: column;
}
form > div > label 
{
	cursor: pointer;
	font-size: 20px;
	position: relative;
	top: -2.5px;
}
form > div > input[type=checkbox]
{
	width: 20px;
	height: 20px;
	margin-right: 5px;
	cursor: pointer;
}

.err 
{
	margin: 10px;
	background-color: rgba(200, 0, 0, .5);
	padding: 8px 15px;
	border-radius: 5px;
	animation: show-message linear 300ms;
	max-width: max-content;
	align-self: center;
}
form input:focus
{
	box-shadow: 0 0 5px #999;
}
form input 
{
	font-size: 25px;
	padding: 8px;
	outline: none;
	border: 1px solid #999;
	border-radius: 5px;
	margin-right: 8px;
}
h2 {font-size: 25px; letter-spacing: 2px; text-align: center;}
p {font-size: 25px; font-weight: light; text-align: center;}
.button:hover 
{
	box-shadow: 0 0 5px #333;
}
.button 
{
	padding: 10px;
	background-color: var(--bg);
	font-size: 25px;
	max-width: max-content;
	border-radius: 5px;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	border: none;
	outline: none;
	color: #444;
	transition: box-shadow 300ms;
}
p.disclosure::before {content: '*';}
p.disclosure
{
	font-size: 16px;
	font-family: monospace;
	margin-top: 15px;
}
.buttons 
{
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	align-items: center;
}
@keyframes show-message
{
	0% {opacity: 0; transform: scale(1);}
	50% {transform: scale(1.2);}
	100 {opacity: 1; transform: scale(1)}
}
@media (max-width: 1000px)
{
	body > main {max-width: 95%;}
}
@media (max-width: 900px)
{
	body > main 
	{
		flex-direction: column;
		margin-top: 5px;
	}
	header 
	{
		flex: 2; 
		width: 100%; 
		display: flex; 
		justify-content: center;
		margin-bottom: 20px;
	}
	header > img 
	{
		max-height: 300px;
	}
}
