html
{
	overflow-y: scroll;
	font-family: arial;
}
*
{
	margin: 0px;
	padding: 0px;
	user-select:none;
}
#header
{
	background-color: #C6E4FA;
	font-size: 48px;
	text-align: center;
	position: fixed;
	top: 0px;
	width: 100%;
	transition: 0.2s;
	padding: 10px;
}
#main_area
{
	background-color: #078CF5;
	width: 1000px;
	margin: auto;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, .36);
}
[id *= row]
{
	width: 100%;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-align: center;
	margin: auto;
}
#groups
{
	-webkit-box-flex: 1;
	background-color: #9CCDF3;
	height: 175px;
	border-radius: 10px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, .36);
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center
}
#groups:hover
{
	cursor: pointer;
	background-color: #6DBBF7;
}
a
{
	text-decoration: none;
	color: #FFFFFF;
	font-size: 36px;
	-webkit-text-stroke: 1.75px #065897;
	font-weight: bold;
	float: left;
	width: 31.25%;
	padding: 10px;
}
footer
{
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #E5ECF1;
}
/*tablet landscape*/
@media only screen and (max-width: 960px)
{
	#main_area
	{
		width: 95%;
		background-color: #FF00FF;
	}	
	a
	{
		text-decoration: none;
		color: #FFFFFF;
		font-size: 24px;
		-webkit-text-stroke: 1.25px #065897;
		font-weight: bold;
		float: left;
		width: 31.25%;
		padding: 8px;
	}
	#groups
	{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
}
/*tablet portrait*/
@media only screen and (max-width: 720px)
{
	#main_area
	{
		width: 90%;
		background-color: #FF99FF;
	}	
	a
	{
		text-decoration: none;
		color: #FFFFFF;
		font-size: 24px;
		-webkit-text-stroke: .75px #065897;
		font-weight: bold;
		float: left;
		width: 31.5%;
		padding: 5px;
	}
	#groups
	{
		height: 100px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
}
/*Cell phone*/
@media only screen and (max-width: 500px)
{
	#header
	{
		background-color: #C6E4FA;
		font-size: 48px;
		text-align: center;
		position: fixed;
		top: 0px;
		width: 100%;
		transition: 0.2s;
		padding: 10px;
	}
	#main_area
	{
		margin-top: 48px;
		width: 95%;
		background-color: #FFCCFF;
	}	
	a
	{
		text-decoration: none;
		color: #FFFFFF;
		font-size: 16px;
		-webkit-text-stroke: .25px #065897;
		font-weight: bold;
	}
	#groups
	{
		height: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	#img
	{
		margin-top: 10px;
		text-align: center;
	}
	img
	{
		width: 50%;
	}
}
#img
{
	margin-top: 10px;
	text-align: center;
}
