*, *:before, *:after {
    box-sizing: border-box;
	padding: 0;
	margin: 0;
}

:root {
    --bg: #000;
    --text: #eee;
    --text-muted: #767676;
    --border: #e0e0e0;
    --accent: #2ab211;
}

html, body {
    font-family: cursive;
	background-color: var(--bg);
	color: var(--text);
	text-align: center;
	height: 100dvh;
}

.cont {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100dvh;
}

h1 {
    /* font-weight: 300; */
	font-size: 38px;
	margin-top: 40px;
	margin-bottom: 10px;
}

h1:before, h1:after {
	content: ' • ';
	color: var(--accent);
	font-size: 22px;
	padding: 0 10px;
}

img {
	max-width: 256px;
	border-radius: 50%;
}

p {
	font-size: 20px;
	margin-top: 10px;
	font-weight: 300;
	color: var(--text-muted);
}

@media (max-width: 640px) {
	h1 {
		font-size: 24px;
	}

	h1:before, h1:after {
		font-size: 16px;
		padding: 0 5px;
	}

	img {
		max-width: 128px;
	}

	p {
		font-size: 16px;
	}
}