#container {
  margin: 0 auto;
  width:1250px;
  margin-top:50px;
  }
header {
  width: 700px;
  height:35px;
  }
main {
  /* From https://css.glass for glassmorphic vista style*/
	background: var(--button);
	border-radius: 5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	border: 1px solid var(--border);
	position: relative;
	padding: 5px;
  }
/*top horizontal navi bar styling*/
.nav {

	margin: 0 auto;
	padding: 5px 10px;
	width: 680px;
	/* From https://css.glass */
	background: var(--background);
	background: linear-gradient(90deg, var(--background) 0%, var(--transpgradient) 100%);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	border-radius:5px;
}
/*navbar list styling to be horizontal*/
.nav li {
	display: inline;
	position: sticky;
	padding: 5px;
}

.nav li a {
	color: var(--accent1);
	text-decoration: none;
	font-weight: bold;
}
/*gallery styling*/
/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 300px;
  display:inline-block;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 14px;
  padding:5px 0px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}