html, body {
	margin: 0;
	padding: 0;
	border: 0;
	min-height: 100%;
	height: 100%;
	font-family: "Verdana", sans-serif;
	overflow: auto;

	
}
html {
	/*background: rgb(20,20,40);*/
	/*canvas */ /*background: #141428;*/
	background-image: linear-gradient(#141428, #6D738B);
	background-repeat:no-repeat;
	
	
	
}
.page {
	/*background-image:url(pattern.jpg);
    background-repeat:repeat;*/
	background-color: #d8bfd8;
	width: 1080px;
	min-height: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-width: 5px;
	/* border: solid #FFFFFF 3px */
}
.title {
	width: 1080px;
	margin: 0 auto;
	/*background: url("title_bar.png") no-repeat; */
	text-align: right;
	color: #ff6633;
	font-size: 4em;
	font-weight: bold;
}
.title a{
	color:inherit;
	text-decoration:inherit;

}
.navbar {
	background: rgb(255,153,51);
	/*overflow: auto;*/
	margin: 0;
	padding: 0;
	
}

.header {
	width: 1080px;
	margin: 0 auto;
	text-align: center;
	color: rgb(255,153,51);
	
	font-size: 1.5em;
	font-weight: bold;
	padding: 2px;
}
/*///////////////////// dropdown menu///////////////////////////////*/
.dropbtn {
  background-color: rgb(255,153,51);
  color: black;
  padding: 10px;
  font-size: 1.25em;
  text-align: center;
  font-family: "Verdana", sans-serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #ff6633;
}

.dropdown {
  position: relative;
  display: inline-block;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(255,153,51);
  min-width: 160px;
  overflow: auto;
  font-size: 1.25em;
  font-weight: bold;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ff6633;}

.show {display: block;}

/*///////////////////// END dropdown menu ///////////////////////////////*/

.buttons {
	/*width: 672px;*/
	/*width: 748px;*/
	width: 796px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	/*flex-wrap: wrap;*/


}

.buttons a {
	
	text-decoration: none;
	color: rgb(10,10,30);
}

.navbar ul{
	margin-right: auto;
	margin-left: auto;
	margin: 0;
	list-style-type: none;
	
}
.navbar li{
	text-align: center;
	float: left;
	font-size: 1.25em;
	font-weight: bold;
	padding: 10px;
	list-style-type: none;

}

.navbar li:hover {background-color: #ff6633;}
.divider {
	width: 80%;
	margin: 32px auto;
	height: 3px;
	background: black;
	
}
.content {
	width: 960px;
	margin: 5px auto;
	padding: 10px;
	/*color: black;
	border: 1px solid black;*/
	box-sizing: border-box;
	font-size: 0.75em;
	min-height: 24px;
}
.content.img{
	height: auto;
	width: auto;
	padding: 1px;
	margin-bottom: auto;
}
.content.img img{
	width: auto;
	vertical-align: bottom;
}
.content.text {
	padding: 5px;
}
.columns {
	display: flex;
	width: 960px;
	height: auto;
	margin: 20px auto;
	padding: 0;
	box-sizing: border-box;
}
.columns .content {
	height: 100%;
	margin: 0;
	margin-right: 10px;
}
.columns .content.img{
	max-width: 75%;
}
.columns .content:last-child {
	margin-right: 0;
}
.columns .content.text{
	min-height: 258px;
	max-width: 640px;

}
.gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 960px;
	margin: 0 auto;
}
.gallery .content{
		
}
.gallery .hover-content{
	position:relative;
	
}
.footer {
	color: rgb(10,10,30);
	width: 1080px;
	margin: 0 auto;
	background: rgb(255,153,51);
	padding: 1px;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.25em;
}
.footer li{
	float: center;
	font-size: 1.25em;
	font-weight: bold;
	padding: 10px;
}

.active {
  border-radius: 5px;
  cursor: pointer;
}

.static {
  position:absolute;
  background: white;
  border-radius: 5px;
}

.static:hover {
  opacity:0;
}

/* Style the Image Used to Trigger the Modal */
.galleryImage {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.galleryImage:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  /*width: 100%;*/
  Height: 100%
  max-width: 800px;
  max-height: 720px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.2s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 96px;
  color: #f1f1f1;
  font-size: 64px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

