html, body {
    height: 100%;
    color: #333333;
    background: #ffffff; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover,  #ffffff 0%, #d3d3d3 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover,  #ffffff 0%,#d3d3d3 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center,  #ffffff 0%,#d3d3d3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d3d3d3',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.vertical-center {
	min-height: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

h1 {
    font-weight: 300;
    font-size: 30px;
    margin-top: 10px;
}

p.headline {
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 21px;
    font-weight: 300;
}

p.copyright {
    color: #a3a3a3;
}

a, a:hover, a:active {
    color: #1D71B8;
    text-decoration: none;
}

ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 30px;
}

li a {
    font-size: 21px;
    font-weight: 300;
}

.fa {
    font-size: 26px;
    color: #1D71B8;
    margin-right: 3px;
}