html { scroll-behavior: smooth; }


.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  /*color: white;
  padding: 14px 16px;*/
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/*.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}*/

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1e3a8a;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #FFFFFF;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/*.dropdown-content a:hover {
  background-color: #ddd;
}*/

.dropdown:hover .dropdown-content {
  display: block;
}

/* Basic CSS for the gallery layout */
.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 10px; /* Space between images */
	justify-content: center;
}
.gallery img {
	width: 550px; /* Set a fixed width */
	height: 300px;
	/*border: 1px solid #ccc;
	padding: 5px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;*/
}
	 /*Optional: add a hover effect with CSS 
.gallery img:hover {
	transform: scale(1.05);
}*/