#navlist
{
margin: 0;
padding: 0 0 20px 10px;
border-bottom: 1px solid #000;
}

#navlist ul, #navlist li
{
margin: 0;
padding: 0;
display: inline;
list-style-type: none;
}

#navlist a:link, #navlist a:visited
{
float: left;
line-height: 14px;
font-weight: bold;
margin: 0 10px 4px 10px;
text-decoration: none;
color: #999;
}

#navlist a:link#current, #navlist a:visited#current, #navlist a:hover
{
border-bottom: 4px solid #000;
padding-bottom: 2px;
background: transparent;
color: #000;
}

#navlist a:hover { color: #000; }



h1 {
  color: blue;
  text-align: left;
}

h2 {
color: blue;
text-align: left;
}

h3 {
color: blue;
text-aling: left;
}

h6 {
color: blue;
text-aling: left;
}

p {
  font-family: verdana;
  font-size: 20px;
}

body   { 
	background: url("Logo.png")  no-repeat  fixed bottom left;	
	background-color: ivory; 
	color: black;

}
body   { 
	background: url("Logo.png")  no-repeat  fixed bottom left;	
		background-color: ivory; 
	color: black;


}


#button1 {
	border-radius: 18px;
	height: 60px; width: 300px;
	background-color: #00CFDF;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	cursor: pointer;
}

#button1:hover {
    background-color: lightblue;
	height: 60px; width: 300px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}

#button3 {
	border-radius: 18px;
	height: 40px; width: 300px;
	background-color: #00CFDF;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	cursor: pointer;
}

#button3:hover {
    background-color: lightblue;
	height: 40px; width: 300px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}


#button2 {
  background-color: orange;
  cursor: pointer;
}

#button2:hover {
    background-color: yellow;
}

submit {
  width: 140px;
  height: 45px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  }


hr { 
 
width: 100%; 
height: 1px; 
margin: 0 auto;
color: blue;
}


html, body {
  height: 100%;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 320px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

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


