@charset "UTF-8";
.navbar {
  overflow: hidden;
  background-color: white;
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  font-family: Arial;
}
/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  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: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: Arial; /* 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: red;
}
/* 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;
}
h1 {color: white
}

.inner {
	
	display: table-cell;
	vertical-align: text-top;
	width: 100%;
	max-width: none;
	text-align: center;
	align-content: center;

}
.btn {
	
	border-radius: 9px;
	border: solid;
	padding: 10px;
	color: white;
	text-decoration: none;
	text-align: center;
	font-size: 200%;
	align-items: center;
	
		
}
.navbar-fixed-top {
position: fixed;
right: 0;
left: 0;
z-index: 999;
}
.gallery img{
	margin: 15px 15px
}
.gallery img {
	transition: 1s;
	padding: 5px;
	width: 150px;
}
.gallery img:hover {
	filter: grayscale(100%);
	transform: scale(1.1);
}

