body {
	color: #fff;
}

.logo {
	width: 394px; /*the width of the element*/
	height: 212px; /*the height of the element*/
	position: absolute; /*absolute position to center the element in relation to its parent element*/
	left: 50%; /*the left border of the element is positioned at half of the available width of the parent element*/
	top: 50%; /*the top border of the element is positioned at half of the available height of the parent element*/
	margin-left: -197px; /*half of the element width is removed from the left margin to center it*/
	margin-top: -106px; /*half of the element height is removed from the top margin to center it*/
}