@charset "UTF-8";
/* CSS Document */
html /*for stay on bottom footer*/
{
	height: 100%;  /*html code for stay on bottom footer*/
	box-sizing: border-box;
}

*
{
	box-sizing: border-box;
}

*,*:before,*:after
{
	box-sizing: inherit;
}

body
{
	background: rgba(102,102,102,1.00);
	text-align: center;
	font-size: 100%;
	font-family: acumin-pro, sans-serif;
	font-weight: 300;
	font-style: normal;
	height: 100%;
	margin: 0;
}

a
{
	text-decoration: none;
	color: inherit;
}

img
{
	max-width: 100%;
	max-height: 100%;
}

a,a:link,a:visited,a:hover,a:active
{
	text-decoration: none;
}

p
{
	margin-top: 0;
	margin-bottom: 0;
}

video
{
	max-width: 100%;
}

header
{
	width: 100%;
	position: fixed; /* Stay in place */
	z-index: 10; /* Sit on top */
	top: 0;
	left: 0;
	border-bottom: solid thin rgba(255,0,4,1.00);
}

h1,h2,h3,h4,h5,h6
{
	font-size: 1em;
	font-weight: 100;
	margin: 0;
}

h1
{
	width: 100%;
}

h2
{
	
}

h3
{
	
}

h4
{
	
}

h5
{
	
}

h6
{
	
}



/*********************************************************************/
/*******************************************************************/
.flexRowCenterCenter
{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.flexRowStart
{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
}


/*********************************************************************/
/*********************************************************************/
#logocontainer
{
	width: 100%;	
	background: rgba(0,0,0,1.00);
	text-align: left;
}

#logoImageContainer
{
	width: 45px;
	margin: .6em .5em 0 .5em;
}

#logoLetters
{
	font-size: 2em;
	font-weight: 600;
	color: rgba(255,0,4,1.00);
}



/*********************************************************************/
/*************************************************************************/
#clockAndTimeSection
{
}

#clock
{
	font-weight: 700;
	position: fixed;
	width: 100%;
	bottom:0;
	border-top: solid thin;
	padding: 1em;
	text-align: center;
	color:rgba(255,0,4,1.00);
	background: rgba(0,0,0,1.00);
	z-index: 10; /* Sit on top */
}




/*********************************************************************/
/*******************************************************************/


/*********************************************************************/
/**********************************************************************/



/*********************************************************************/
/*****************************************************************/






/*********************************************************************/
/****************************************************/




/**************************Responsive design****************************/
/*The primary layout is for a small smart phone like the iphone SE - then to a standard sized smart phone like the iphone X*/

@media only screen and (orientation: landscape)
	/*for landscape orientation of the primary layout*/
{
	
}

@media only screen and (min-width: 600px) 
	/* For tablets: */
{
	
}
	
@media only screen and (min-width: 600px)and (orientation: landscape)
	/* landscape orientation for tablet*/
{

}
	
@media only screen and (min-width: 900px) 
	/*small laptops*/
	
{
	
}

@media only screen and (min-width: 1200px) 
{
	
}


