@import url('https://fonts.googleapis.com/css?family=Spartan:400,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Arimo:400,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap');


body {
	width: 100%;
	min-height: 100%;
	overflow: auto;
	background: rgb(24,37,52);
	background: -moz-linear-gradient(45deg, rgba(24,37,52,1) 0%, rgba(65,77,91,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(24,37,52,1) 0%, rgba(65,77,91,1) 100%);
	background: linear-gradient(45deg, rgba(24,37,52,1) 0%, rgba(65,77,91,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#182534",endColorstr="#414d5b",GradientType=1);
	background-attachment: fixed;
	font-family: 'Open Sans', sans-serif; 
	color: #EEE;
}

h1 {
	font-family: 'Nanum Pen Script', cursive;
	font-size: 3.4rem;
	font-weight: normal;
	color: #FFF;
	margin: 0;
}
h1 > span {
	color: #00DFD9;
}

a.default {
	color: #00BFBA;
	font-weight: 600;
	border-bottom: 1px dotted #00BFBA;
	transition: all 0.2s ease;
}
a.default:hover {
	color: #00DFD9;
	border-color: #00DFD9;
}

#container {
    min-height: 100vh;
}
#container .center {
	position: relative;
	margin: 0 auto;
	padding: 2rem;
}

.align-middle {
	position: absolute;
	top: 50%;
	width: 100%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}