:root {
	--col-primary: #ff0063;
	--col-primary-d: #893766;
	--col-secondary: #98e370;
	--col-secondary-d: #65a144;
	--col-tertiary: #ff8200;
	--col-tertiary-d: #ff5400;
}
body {
	margin: 0;
	padding: 0;
	background-color: rgb(22, 20, 29);
	color: rgb(44, 44, 44);

	font-family: "Dongle", sans-serif;
	font-weight: 100;
	font-style: normal;
	font-size: 1.6rem;
	line-height: 1.2rem;

	box-sizing: border-box;
}
h1, h2, h3 {
	color: var(--col-secondary);
}
h3 {
	font-weight: lighter;
	margin-top: 1em;
	margin-bottom: 0.25em;
}
li {
	margin-bottom: 0.5em;
}
section {
	margin-top: 1em;
}
.card {
	box-sizing: border-box;
	position: relative;
	margin: auto;
	margin-top: 70px;
	width: 95vw;
	max-width: 1536px;
	border-radius: 10px 10px 8px 8px;
	
	background-color: rgb(165, 209, 94);
	min-height: 300px;
}
.card .padded {
	padding: 1em;
	padding-bottom: 1em;
}
.title {
	position: absolute;
	top: -2rem;
	font-size: 4em;
	display: inline;
	color: rgb(255, 0, 119);
}
.tld {
	position: absolute;
	right: -1.4rem;
	top: 0.3em;
	font-size: 0.3em;
	color: rgb(163, 255, 88);
}
.socials {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 1rem;
}
.socials svg {
	width: 60px;
	margin: 8px;
}
.socials a, a:visited {
	color: inherit;
	text-decoration: none;
}
.twitch {
	position: relative;
	left: 0;
	padding: 0;
	aspect-ratio: 16 / 9;
	width: 100%;
	border-radius: 7.5px;
	overflow: hidden;
}
#twitch-player {
	width: 100%;
	height: 100%;
}
.cr {
	position: absolute;
	right: 0;
	bottom: -1em;
	color: white;
	opacity: 10%;
}
a, a:link, a:visited, a:active {
	color: var(--col-tertiary);
	text-decoration: none;
}
a:hover {
	color: white;
}
svg {
	color: var(--col-primary);
}
strong, b {
	color: var(--col-secondary);
}