::selection {
    background: #d3262e;
    color: #fff;
}

::-moz-selection {
    background: #d3262e;
    color: #fff;
}

* {
	box-sizing: border-box;
}

html, body {
	background: #d3262e;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

body {
	height: 100vh;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
}

section {
	padding: 0 1rem;
}

#logo {
	max-width: 25rem;
	width: 100%;
	height: auto;
	margin: 0 auto;
}