﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Caladea&family=Fira+Sans:wght@300&family=Nunito+Sans&display=swap');
/* CSS Document */
BODY {
	background: rgb(0,0,0);
	background: linear-gradient(150deg, rgba(0,0,0,1) 0%, rgba(41,41,41,1) 50%, rgba(78,78,78,1) 100%);
	color: #ffffff;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 100%;
	line-height: 1.6;
}
a, a:link, a:visited {
	color: #eeeeee;
	text-decoration: underline;
}
a:hover {
	color: #50dd02;
	text-decoration: none;
}
.stats {
	font-size: 0.84375em;
	text-align: left;
}
h1 {
	font-family: 'Caladea', serif;
	font-size: 1.3em;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
img.title {
	border-style: none;
	display: block; /*images must be set to block in order use auto margins*/
	margin: 0 auto; /*centers images in most browsers*/
	text-align: center; /*centers images in older browsers*/
	vertical-align: top;
}
hr {
	border: 0;
	background-color: #e6e0d4;
	color: #e6e0d4;
	height: 2px;
	width: 98%;
}
table.mainstyle {
	border-collapse: collapse;
	border-style: none;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	vertical-align: top;
	width: auto;
	max-width: 98%;
}
table.accomplishments {
	font-size: 0.9375em;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	vertical-align: text-top;
}
td {
	border-style: none;
	margin: 2px;
	padding: 3px;
	vertical-align: text-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-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;
}