/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #165454;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #003333;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* old style */

body { text-align: center; 		
		font-family: Arial, Helvetica, sans-serif; 
		font-size: 145.01%; 
		letter-spacing: 2px;
		margin: 30.1px; 
		background-color: #fff; 
					}
		img { 
		padding: 10px 10px 10px 10px;
		}
		a {
color: black;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
		
a:link {color:#4ca17a;}      /* még nem látogatott link */
a:visited {color:#f26a45;}  /* már meglátogatott link */
a:hover {color:#6d6d6d;}  /* kurzor alatti link */
a:active {color:#6d6d6d;}  /* kiválasztott link */
		

a:link {text-decoration:none;}     /* még nem látogatott link */
a:visited {text-decoration:none;} /* meglátogatott link */
a:hover {text-decoration:none;}   /* underline kurzor alatti link */
a:active {text-decoration:none;}  /* kiválasztott link */


/* a:link {background-color:#B2FF99;} */
a:visited {background-color:#dcdcdc;}
a:hover {background-color:#dcdcdc;}
a:active {background-color:#bfbfbf;}

h1 {
  
  font-size: 32px;
  
}
		
		
	