/* SPARK APP. GENERAL CSS. COPYRIGHT JASON PASCOE 2024. ALL RIGHTS RESERVED. */



/**********************************************/
/************ GENERAL PAGE  STUFF *************/
/**********************************************/


/* Set the default text attributes for the page */
body {
    -webkit-text-size-adjust:100%;
	font-family: Futura, "Trebuchet MS", Arial, sans-serif;
	font-size: 1em;
	color: white;
	line-height: 1.8em;
	text-align: left;
	margin: 0px;
	padding: 0px;
	background-color: #52A6D2
}

 
/* The main page outline setup */
#Page_Container {

    max-width: 600px;
    padding: 5em 5em 5em 5em;
    margin: auto;
		
	/* Background color is blue */
	background-color: #52A6D2;
	
}


/* No borders on images */
img {
	border: none;
}


/* Headings */
h1 { font-size: 1.2em; text-align: left; text-transform: uppercase; font-weight: normal; color: #F3DB6B; } /*#e8ef25; }*/
h2 { font-size: 1em; text-align: left; text-transform: uppercase; font-weight: normal; font-style: italic; color: #e8ef25;}


/* Links are a yellow colour */
a:link, a:visited 
{
	/* Old yellow colour: f5de42*/
	color: #F3DB6B;
	text-decoration: none;
}


/* Hovered links also get an underline */
a:hover
{
	color: #F3DB6B;
	text-decoration: underline;
}



/*************************************************/
/************* MAIN CONTENT SECTION **************/
/*************************************************/


/* The App Store Badge */
.App_Store_Info {
    text-align: center;
    padding: 1em
}

/* The Copyright message appears in tiny uppercase letters at the bottom-right of the page */
#Copyright
{
	line-height: 1.2em;
	font-size: 0.5em;
	text-transform: uppercase;
	text-align: right;

	border-top: 2px dotted;
    margin-top: 4em;
	padding: 0.7em 0em 0em 0em;
}

