/**
 * ============================== 
 * Aegis Framework | MIT License
 * http://www.aegisframework.com/
 * ==============================
 */

/**
 * Space for all imported Fonts 	
 */




/**
 * Main Style goes here	
 */ 
html { 
	width: auto;
	overflow-x: hidden;
}

body {
	height: 100%;
	width: 100%;
  	overflow-x: hidden;
  	font-size: 100%;
  	margin: 0;
  	padding: 0;
  	
}

li {
	list-style-type: none;
	display: inline-block;
}

a {
	text-decoration: none;
	color: inherit;
}
header{
	width: 100%;
	color: #FFFFFF;
	background-color: rgb(103, 65, 114);
	text-align: center;
	margin-bottom: 3em;
}
h1{
	font-size: 5em;
	margin: 0;
	padding: 0.5em;
}
section{
	width: 80%;
	margin: 0 auto;
}
a{
	display: block;
	text-align: center;
	color: rgb(34, 167, 240);
	font-size: 2em;
}
footer{
	text-align: center;
	font-size: 1.5em;
}
/**
 * Some CSS Fixes	
 */

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.container {
	margin: 0 auto;
	max-width: 60rem; /*48rem*/ 
	width: 95%;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
 
.clearfix:after {
	clear: both;
}
 
.clearfix {
	*zoom: 1;
}

/**
 * CSS Viewports (Experimental Technology) 	
 */
@-ms-viewport {
    zoom: 1.0;
    width: device-width;
    user-zoom: fixed;
}
@-o-viewport {
    zoom: 1.0;
    width: device-width;
    user-zoom: fixed;
}
@viewport {
    zoom: 1.0;
    width: device-width;
    user-zoom: fixed;
}

/**
 * Place here all Media Queries and it's styles. 	
 */

/* 400px (Most Smartphones, and minimun width of browser in a computer) */
@media (max-width: 25rem){
	body{
	
	}
}

/* CSS for Printing */
@media print{
	
}