* {
	box-sizing: border-box;
}

html {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

body {
	font: 1.5em 'Manrope', sans-serif;
	color: #222;
	background: #fff;
	padding: 20px 40px;
	max-width: 800px;
	margin: 0 auto;
}

h1 {
	color: #ED4C67;
}

h1, p {
	margin: 10px 0;
}

p:last-of-type {
	font-size: 21px;
	color: rgba(0, 0, 0, 0.8);
	border-bottom: 1px solid rgba(0, 0, 0, 0.8);
	width: fit-content;
	margin: 20px 0;
	cursor: pointer;
}

::selection {
	color: #222;
	background: #ED4C67;
}