/* https://www.kickscondor.com/whostyles/ */

:root {
	--maincolor: green;
	--fontcolor: #2aac2a;
	--bgcolor: black;
	--border: 2px solid var(--maincolor);
	--default-padding: 1em;
}

.whostyle {
	font-family: Verdana;
	line-height: 1.5;
	font-feature-settings: "kern";
	text-rendering: optimizeLegibility;
	padding: var(--default-padding);
	margin: 1em;
	background-color: var(--bgcolor);
	border: 2px solid var(--maincolor);
	color: var(--fontcolor);
}

/* links */
.whostyle a:link {
	color: Yellow;
	transition: all 200ms;
	will-change: all;
}

.whostyle a:visited {
	color: Orange;
}

.whostyle a:active {
	color: YellowGreen;
}

.whostyle a:hover {
	color: white;
}
