

body {
	background-color: #330000;
}
/*
body {
  border: 0px solid black;
  margin-top: 20px;
  margin-bottom: 100px;
  margin-right: 300px;
  margin-left: 300px;
*/  

 /* unvisited link */
a:link {
 color:#ff9933;
}

/* visited link */
a:visited {
  color: #ff9933;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: orange;
}


 h1 {
color:#ff6600; 
    font-family:  "Arial Narrow Bold", "Tahoma", "Arial", "Verdana";
}

h2 {
	color: #ff794d;
	font-family: "Arial Narrow Bold", "Tahoma", "Arial", "Verdana";
}


h3 {
	color: #ffb366;
	font-family: "Garamond", "Georgia", "Arial", 

}

h4 {
	color: #ff8000;
	font-family: "Arial Narrow Bold", "Tahoma", "Arial", "Verdana";
}

h5 {
	color: #ff8000;
		font-family: "Arial Narrow Bold", "Tahoma", "Arial", "Verdana";

	}

h6 {
	color: #000000;
}


p.center {
	color: #ff8000;
}





/*a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked/*comment LIGHT SEA GREEN*/

a:hover {
color: darkorange;
}

 /* unvisited link */
a:link {
 color:#ff9933;
}

/* visited link */
a:visited {
  color: #ff9933;
}

/* selected link */
a:active {
  color: orange;
}















<style>
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
</style>
</head>

<body>
<style>
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
</style>

