/* Copyright (c) 2025 by Martin Steyn. All rights reserved. */


/* LAYOUT & TYPOGRAPHY */

html, body, main
	{
		height:							100%;
	}

header
	{
		display:						none;
	}

main
	{
		flex-direction:					column;
		padding:						0;
	}

section
	{
		display:						flex;
		justify-content:					center;
		align-items:					center;
		min-height:					100%;
		padding:						20px;
		font-weight:					500;
	}

img
	{
		max-width:						760px;
		margin:						0 auto;
		/*opacity:						0.75;*/
	}

p
	{
		display:						flex;
		flex-wrap:						wrap;
		justify-content:					center;
		margin:						20px 0 40px 0;
	}

p span:first-child
	{
		padding-right:					4px;
	}

section > div div
	{
		display:						flex;
		justify-content:					space-around;
	}

a
	{
		font-size:						1rem;
	}

footer
	{
		bottom:						10%;
		justify-content:					center;
		background-color:				rgb(246,246,246);								/*off-white #f6f6f6*/
	}

small
	{
		margin:						0;
		color:							rgb(68,68,68);									/*dark grey #444*/
		font-weight:					500;
		text-align:						center;
	}

a:link, a:visited
	{
		border-bottom-color:			rgb(68,68,68);									/*dark grey #444*/
		color:							rgb(68,68,68);									/*dark grey #444*/
		transition:						all 0.4s;
	}

a:hover, a:active
	{
		border-bottom-color:			rgb(109,154,171);								/*steel-blue #6d9aab*/
		color:							rgb(69,105,119);								/*dark steel-blue #456977*/
	}