html, body
{
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
}


.background
{
	background-image: url('/media/site_files/background.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 0;
}


.container
{
	
	width: 100%;
	min-height: 100%;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	z-index: 1;
	position: relative;
}

.topbar
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5em;
	background-color: rgba(255,255,255,0.3);
	z-index: 10;
}


.logo
{
	position: relative;
	background-image: url('/media/site_files/logo.png');
	background-repeat: no-repeat;
	background-size: contain;
	height: 2em;
	width: 12em;
	margin-left: 2em;
	margin-top: 1.5em;
	cursor: pointer;
}
	
.content
{
	width: 75%;
	min-width: 400px;
	margin-top: 5em;
	background-color: white;
	background-color: rgba(255,255,255,0.9); /* for browsers with transparency support */
	padding: 30px;
	border-color: #999999;
}

.content .title
{
	
}

.footer
{
	font-size: 0.8em;
	color: #666666;
	text-align: right;
}

.border
{
	border-width: 1px;
	border-style: solid;
	border-bottom-width: 4px;
}