@charset "utf-8";
/* CSS Document */
* {box-sizing: border-box;}
*:before, *:after {box-sizing: border-box;}
html, body {
	position: relative;
	margin: 0px;
	font-family:'Lato', Arial, sans-serif;
	min-width: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	color:#eee;
}
.wrapper {
	min-height: 100vh; /* will cover the 100% of viewport */
	overflow: hidden;
	display: block;
	position: relative;
	padding-bottom: 100px; /* height of your footer */
}
.container {
	width:90%;
	max-width:650px;
	height:auto;
	background-color: rgba(0, 0, 0, 0.85);
	padding:22px 10px;
	margin: 10% auto 0;
	text-align:center;
	border-radius: 25px;
	border:8px solid #9d9d9d;
}
/*http://www.colourlovers.com/palette/3455865/subtle_strength*/
.white { color:rgb(255, 255, 255); }
.blue { color:rgb(31,51,122); }
.red { color:rgb(137,17,37); }
.green { color:rgb(8,117,90); }
.yellow { color:rgb(255,204,3); }

.blue-bg { background-color:rgba(31,51,122, 0.65); }
.red-bg { background-color:rgba(137,17,37, 0.65); }
.green-bg { background-color:rgba(8,117,90, 0.65); }
.yellow-bg { background-color:rgba(255,204,3, 0.65); }
.white-bg { background-color:rgba(255, 255, 255, 0.55); }
.dark-bg { background-color:rgba(52,52,52, 0.55); }

h1, h2, h3, h4, p { margin:0; }
h1 {font-size:2.25em;}
h2 {font-size:1.8em;}
h3 {font-size:1.6em;}

a, a:visited {
	color: #2741D3;
	text-decoration:none;
}
a:hover {color: #3D53DB;}


.login {
	display:block;
	text-align:center;
	margin:10px auto 0;
	font-weight:bold;
}
footer {
	position:absolute;
	bottom: 0;
	width:100%;
	text-align:center;
	color:#444;
	height: 55px;
	background-color:rgba(250, 250, 250, 0.25);
}
footer p {margin:15px 0 0;}

a.button { color:#FFF; }
.button {
	cursor:pointer;
	position: relative;
	display: inline-block;
	margin:15px 0;
	padding: 15px 25px;
	border-radius: 15px;
	background-color: #FAAE25;
	background-image: linear-gradient( rgba(254,211,96), rgba(247,154,6) );
	text-decoration: none;
	color: #EEE;
	font-size: 25px;
	font-family: sans-serif;
	font-weight: 100;
	text-shadow: 0 0 7px rgba(100,100,100,0.7);
	
	-moz-box-shadow:    0 0 6px 6px rgba(255,255,255,0.4);
	-webkit-box-shadow: 0 0 6px 6px rgba(255,255,255,0.4);
	box-shadow:         0 0 6px 6px rgba(255,255,255,0.4);
	-webkit-filter: brightness(95%);
	-webkit-transition: all 0.65s ease;
	-moz-transition: all 0.65s ease;
	-o-transition: all 0.65s ease;
	-ms-transition: all 0.65s ease;
	transition: all 0.65s ease;
	
}
.button:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 50%;
	background: linear-gradient (rgba(255,255,255,0.8), rgba(255,255,255,0.2) );
}
.button:hover {
	-webkit-filter: brightness(115%);
}

.blist {
	width:100%;
	font-size:1.15em;
	margin:25px auto;
	flex: 1;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}
.blist span {
	margin:0 5px;
}
@media (max-width: 800px) {
 /*.pspan span { display: block; font-weight:700; line-height:1.6em; }*/
 .container { padding:2%; }
}
@media (max-width: 500px) {
 h1 {font-size:2em;}
 h2 {font-size:1.6em;}
 h3 {font-size:1.6em;}
 a.button { font-size: 18px; }
}