*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root
{
	--primary-color: #1E3A8A;
	--secondary-color: #E11D48;
	--background-color: #F3F4F6;
	--text-color: #111827;
	--accent-color: #FACC15;
	--link-color: #0D9488;	
}
@font-face 
{
	font-family: 'Permanent Marker';
	src: url('../fonts/PermanentMarker-Regular.ttf');
}
section 
{
	width: 100%; padding: 0; 
	display: flex;
	justify-content: center;
	align-items: center;
}
section > iframe
{
	display: block;
	aspect-ratio: 16 / 9;
	/* width: 50%; */
	margin: 0 auto;

}
/* main > * {border: 1px solid red;} */
body 
{
  font-family: 'Permanent Marker', cursive;
	background-color: var(--primary-color);
}
img 
{
	max-height: 400px;
	max-width: 50%;

}
h1, p.fact
{
	text-align: center;
	color: var(--accent-color);
	text-shadow: 1px 1px 1px var(--text-color);
}
h1 
{
	font-size: 45px;
	letter-spacing: 5px;
}
p.fact
{
	font-size: 25px;
}
main > * 
{
	flex: 1;
}
main > header
{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	flex: .5;
}
main 
{
	margin: 0 auto;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100vh;
}
main > footer 
{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

p > a:hover
{
	transform: scale(.97);
}
p > a
{
	transform-origin: center;
	background-color: #ccc;
	border-radius: 5px;
	padding: 15px;
	color: black;
	text-shadow: 0 0 1px white;
	text-decoration: none;
	display: inline-block;
	margin-top: 15px;
	font-size: 20px;
	transition: transform 300ms;
	cursor: pointer;
}