@charset "utf-8";
/* CSS Document */

@import url("*");

a:link {
    color: #ffffff;
	text-decoration: none;
}

a:visited {
    color: #ffffff;
	text-decoration: none;
}

a:hover {
    color: #ffcc00;
	text-decoration: none;
}

a:active {
    color: #ffcc00;
	text-decoration: none;
}

body {
	font-family: Arial, Verdana, sans-serif;
}

p.head1{
	color: gray;
	font-weight: bold;
	font-size: 60px;
	text-align: center;
} 

p.head2{
	color: gray;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
} 

p.head3{
	color: red;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
} 

p.menu1{
	color: #ffffff;
	font-weight: bold;
	font-size: 15px;
	text-align: center;
}

/* The navigation bar */
.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}