@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400&display=swap');

html {
	height: 100%;
}

body {
	background-color: #222222;
	font-family: 'Cantarell', sans-serif;
	font-size: 1em;
	color: white;
	display: flex;
	margin: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

h1 {
	font-size: 2.8em;
	font-weight: 700;
	margin: 0px;
}

h2 {
	font-size: 1em;
	font-weight: 700;
	margin: 11px 0px 0px 0px;
}

article {
	display: flex;
	flex-direction: column;
	width: fit-content;
	margin: 0;
}

article img {
	clip-path: circle(50.0% at 50% 50%);
	width: 100px;
	height: 100px;
	align-self: center;
}

article ul {
	margin: 4px 0px;
	padding-left: 20px;
}

article li {
	list-style-type: ">";
	padding-inline-start: 1ch;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: white;
}