body {
  background-color: #000;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.header {
  background-color: #000;
  text-align: center;
  padding: 20px;
  color:#ff69b4;
}
.header h1 {
  font-size: 36px;
  margin: 0;
}
.header img {
	height: 200px;
}
.navigation {
  background-color: #ff69b4;
  padding: 10px;
  text-align: center;
}
.navigation a {
  color: #000;
  text-decoration: none;
  padding: 13px 16px;
}
.navigation a:hover {
  background-color: #FF33AA;
}
.content {
  padding: 20px 0px;
  text-align:center;
}
.content h2 {
  color: #ff69b4;
}
.content h4{
  color: #ff69b4;
}

.content p {
	color: #ff69b4;
}
.content th, td, table{
	table-layout:fixed;
	padding: 8px 16px;
	border-collapse: collapse;
	text-align: center;
	margin: auto;
}
.content th{
	background-color: #000;
	color: #ff69b4;
}
.content tr{
	background-color: #fc9fce;
}
.content tr:nth-child(odd) {
	background-color: #ff69b4;
}
.content tr:hover{
	background-color: #FF33AA;
}
.tooltip {
  position: relative;
}
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #000;
  color: #ff69b4;
  text-align: center;
  border-radius: 6px;
  border:solid 1px;
  border-color:#ff69b4;
  position: absolute;
  width: 120px;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}