body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
	background: #0a0a0a;
	color: #fff;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
}

#logo {
	width: 300px;
	height: 150px;
	background: no-repeat center/contain url('logo.svg');
	transition: transform .3s;
}

#logo:hover {
	transform: scale(.95);
}