﻿body {
	background-color: #330000;
}
body {
  border: 0px solid black;
  margin-top: 20px;
  margin-bottom: 100px;
  margin-right: 250px;
  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", sans-serif, "Tahoma", "Arial", "Verdana";
letter-spacing: 5px;
}

h2 {
	color: #ff794d;
	font-family: Arial, Tahoma , Verdana, sans-serif;
}


h3 {
	color: #ffb366;
	font-family: Garamond, Georgia, Arial , sans-serif;

}

h4 {
	color: #ff8000;
	
}

h5 {
	color: #ff8000;
	}

h6 {
	color: #ff8000;
}


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;
}

<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>

