/**
 * Base
 * @author	CLARANET
 */

/* remove all rounded corners */
* {
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
}

/* setup main container layout */
html,
body {
	height: 100%;
}

body {
	margin		: 0;
	padding		: 0;
	width		: 100%;
	display		: table;
	font-weight	: 100;
	font-family	: 'Nunito', 'Lato';
}

body > .container {
	text-align	: left;
	display		: table-cell;
	padding		: 0;
}

#content {
	position: relative;
	height	: 100%;
	padding	: 0.75em 1.25em;
}

#content::after {
	content: "";
	clear: both;
	display: table;
}

#content>.content-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

	#content > h1 {
		font-family	: 'Lato';
		font-size	: 3em;
	}

@media (max-width: 768px) {
	.container.homepage {
		padding-left: 0;
		padding-right: 0;
	}
}