:root {
	--main-hue: 180;
	--secondary-hue: 320;
	--accent-color: hsl(var(--main-hue) 100 60);
	--secondary-color: hsl(var(--secondary-hue) 100 60);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: hsl(0 0 3);
	font-family: monospace;
	color: var(--accent-color);
	font-size: 28px;
	text-align: center;
}

a {
	text-decoration: none;
	color: inherit;
	/**display: flex;
	flex-direction: row;**/
}

a > * {
	display: inline-block;
}

#profile-picture {
	border-radius: 50%;
}

@media (width <= 800px) {



}