/* style.css, llownd, 2024 */
:root {
	font-size: 16px;
	font-family: 'Tahoma', 'Verdana', 'Segoe', sans-serif;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	min-height: 100vh;
	background: #eee;
	justify-content: center;
	align-items: center;
}

body:hover {
    background: #333;
}

body #wrapper {
	width: 392px;
	height: 136px;
    background: url('/static/vectors/logo_sprite.svg') no-repeat center center;
	background-position: 0 0;
}

body:hover #wrapper {
	background-position: 0 -136px;
}
