html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	padding: 0 1.5rem 1.5rem;
	
	font-family:
		'Segoe UI',
		'Ubuntu',
		'Helvetica Neue',
		sans-serif;

	background: hsl(0, 0%, 3%);
}

.name {
	margin-top: calc(100vh / 2.5);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
}