body, html {
	display: flex;
	align-items: center;
  	justify-content: center;
  	height: 100%;
  	width: 100%;
  	font-family: 'PT Sans', sans-serif;
 	overflow: hidden;
 	cursor: default;
	background: white;
}


.box {
	text-align: center;
	padding: 75px;
}

.box > span.brand {
	color: #CCCCCC;
	font-size: 19px;
	letter-spacing: 6px;
	transition: color 0.5s ease;
}

.box > span.brand:hover {
	color:#666666;	
}

