@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
:root {
	--background-color: #16001C;
	--text-color: #ccc;
	--border-color: #6E6E6E;
	--link-color: #FE1B97;
	--foreground-color: #0a0a0a;
	--twitter-blue: rgb(29, 161, 242);
	--twitch-purple: rgb(100, 65, 164);
	--ig-pink: rgb(221, 42, 123);
	--tiktok-blue: rgb(105, 201, 208);
	--patreon-blue: rgb(1, 40, 71);
	--youtube-red: rgb(255, 0, 0);
	--input-color: #0a0a0a;
}


/* GENERAL SHIT */
html, body { height: 100%; padding: 0; margin: 0; }
body {
	background-color: var(--background-color);
	color: var(--text-color);
	font-family: 'Noto Sans JP', sans-serif;
}

a:link,
a:visited {
	color: #FE1B97;
	text-decoration: none;
}

#mainWrapper {
	max-width: 750px;
	margin: 0 auto;
}

i.fa-twitch { color: var(--twitch-purple); }
i.fa-twitter { color: var(--twitter-blue); }
i.fa-instagram { color: var(--ig-pink); }

div.footer {
	text-align: center;
	font-size: 0.9em;
	text-transform: lowercase;
	margin: 20px auto;
}

/* HEADER */
div.banner {
	border: 2px solid var(--border-color);
	padding: 10px;
	margin-top: 20px;
	border-radius: 5px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/wf.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 25% 50%;
}

div.banner div.banner-header {
	font-family: 'Audiowide', cursive;
	text-align: center;
	font-size: 2.5em;
	margin-top: 30px;
	margin-bottom: 30px;
	letter-spacing: 7px;
	text-transform: uppercase;
	text-shadow: -2px 2px 2px rgba(0,0,0,1);
}

div.navigation {
	margin-top: 10px;
	padding: 5px;
	display: flex;
	justify-content: center;
}
div.navigation a:link,
div.navigation a:visited {
	text-decoration: none;
	color: var(--text-color);
}
div.navigation a {
	font-family: 'Audiowide', cursive;
	display: block;
	border: 2px solid var(--border-color);
	border-color: var(--border-color);
	border-left: 0px;
	padding: 10px 20px;
	background-color: var(--foreground-color);
	transition: background-color 1s, color 1s;
}
div.navigation a:hover {
	background-color: var(--link-color);
	color: #000;
}
div.navigation a:first-child {
	border-left: 2px solid var(--border-color);
	border-radius: 3px 0 0 3px;
}
div.navigation a:last-child {
	border-radius: 0 3px 3px 0;
}

/* MAIN STUFF */
div.content p {
	font-family: 'Noto Sans JP', sans-serif;
}
h1 {
	font-family: 'Audiowide', cursive;
	text-align: center;
	text-transform: uppercase;
	margin-top: 40px;
}

/* PROFILE CARDS */
div.profiles div.profile {
	display: flex;
	border: 2px solid var(--border-color);
	border-radius: 5px;
	padding: 10px;
	background-color: var(--foreground-color);
	margin-bottom: 30px;
}
div.avatar {
	align-self: center;
}
div.about {
	flex-grow: 1;
	margin-left: 20px;
}
div.about h2 {
	font-family: 'Audiowide', cursive;
	font-size: 1.5em;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
}
div.profile div.avatar img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}
div.profile div.about ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
div.profile span.label {
	font-weight: bold;
}
div.profile div.socials a:link,
div.profile div.socials a:visited {
	color: var(--text-color);
}
div.profile div.socials {
	margin-top: 40px;
}
div.profile div.socials i {
	font-size: 1.8em;
	margin-right: 10px;
}
