﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&family=Open+Sans&family=Roboto+Slab&family=Tinos&display=swap');
/* CSS Document */
BODY {
	background-color: #ff9cbb;
	background-image: url('https://twf.rhyse.net/Backgrounds/Tears of Love.png');
	color: #7b20b4;
	font-size: 100%;
	line-height: 1.6;
}

a, a:link, a:visited {
	color: #006a44;
	text-decoration: none;
}

a:hover {
	background-color: #006a44;
	color: #d0ccc8;
	text-decoration: none;
}

h1 {
	color: #C8102E;
	font-family: 'Crimson Text', serif;
	font-size: 1.5em;
	text-align: center;
}

h2 {
	font-family: 'Crimson Text', serif;
	font-size: 1.5em;
	text-align: center;
}

.accomplishments {
	font-family: 'Roboto Slab', serif;
	font-size: 0.875em;
	font-weight: 700;
	text-align: center;
	vertical-align: text-top;
}

.bio {
	color: #3C3835;
	font-family: 'Roboto Slab', serif;
	font-size: 0.90625em;
	text-align: justify;
}

.champ {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8125em;
	text-align: center;
	vertical-align: top;
}

.stats {
	font-size: 0.875em;
	font-family: 'Open Sans', sans-serif;
}

.talent {
	color: #000000;
	font-family: 'Tinos', serif;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

.border {
	border-color: #000000;
	border-style: solid;
	border-width: 1px;
	display: block;
 /*images must be set to block in order use auto margins*/
	height: 125px;
	margin: 0 auto;
 /*centers images in most browsers*/
	text-align: center;
 /*centers images in older browsers*/
	width: 125px;
}

.no_border {
	border-style: none;
	display: block;
 /*images must be set to block in order use auto margins*/
	height: 125px;
	margin: 0 auto;
 /*centers images in most browsers*/
	text-align: center;
 /*centers images in older browsers*/
	width: 125px;
}

.mauve {
	border: 0;
	color: #e0b0ff;
	background-color: #e0b0ff;
	height: 2px;
	width: 93%;
}

.red {
	border: 0;
	color: #E4002B;
	background-color: #E4002B;
	height: 2px;
	width: 93%;
}

.mainstyle {
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	max-width: 93%;
}

.header {
	font-family: 'Tinos', serif;
	font-size: 1.5em;
	text-align: center;
	text-transform: capitalize;
	vertical-align: top;
}

th, td {
	border-bottom: 2px solid #1f4f00;
	margin: 2px;
	padding: 3px;
	vertical-align: top;
}
/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted;
 /* If you want dots under the hoverable text */;
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	bottom: 100%;
	left: 50%;
	margin-left: -60px;
 /* Use half of the width (120/2 = 60), to center the tooltip */
	background-color: #111111;
	color: #ffffff;
	text-transform: none;
	text-align: center;
	font-weight: normal;
	padding: 3px 0;
	border-radius: 6px;
  /* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
}

.tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	top: 100%;
 /* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #111111 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
}