html, body {
    margin: 0;
    height: 100%;
}
body {
	background-color: black;
	font-family: arial;
}
figcaption{
	color: white;
	text-align: center;
}
#wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding-top: 20px;
}
main {
	display: flex;
	justify-content: center;
	width: 95%;
	border: 2px solid black;
}
main > div {
	min-width: 80px;
	min-height: 200px;
}
#logo {
	display: flex;
	justify-content: center;
	width: 95%;
}
h1, h2 {
	text-align: center;
	color: white;
	padding: 5px;
}
h1 {
	font-size: 2.5em;
}
h2 {
	font-size: 1.5em;
}
#menu {
	width: 100%;
	padding: 20px;
}
#menu > nav ul {
	display: flex;
	
	min-width: 200px;
	min-height: 50px;
	padding-left: 0;
}

#menu > nav ul li {
	margin: 8px;
	padding-bottom: 10px;
	padding-top: 10px;
		text-align: center;
	width: 200px;
	list-style:none;
	border-radius: 5px;
}
#menu > nav ul li:nth-child(1) {
	background-color: #0088c8;
	
}
#menu > nav ul li:nth-child(2) {
	background-color: #c81619;
	
}
#menu > nav ul li:nth-child(3) {
	background-color: #ed7f00;
	
}
#menu > nav ul li:nth-child(4) {
	background-color: #0088c8;
	
}
#menu > nav ul li:nth-child(5) {
	background-color: #c81619;
	
}
#menu > nav ul li:nth-child(6) {
	background-color: #ed7f00;
	
}

/* Make nav buttons fill the entire li and inherit background */
#menu ul li {
  position: relative;
  padding: 0;
}

#menu ul li button{
  width: 100%;
  height: 100%;
  display: block;
  background: inherit;
  border: none;
  padding: 1em;
  font: inherit;
  text-align: center;    /* Center the text */
  color: white;          /* Set text color to white */
  cursor: pointer;
	font-size: 1.5em;
	padding: 8px;
	border-radius: 5px;
}

/* Optional: Remove button outline on click/focus for a cleaner look */
#menu ul li button:focus {
  outline: none;
}
#gallery {
	text-align: center;
	justify-content: space-around; 
	margin-top: 40px;
}
/* image styles */
#myimg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	margin: 5px;
}
#myimg:hover {
	opacity: 0.7;
}


input[type="search"],input[type="text"], button[type="submit"], select {
	margin-left: 15px;
	border-radius: 5px;
	height: 33px;
	font-size: 1.5em;
}
label{
	color: white;
	font-size: 1.5em;
}
/* modal background */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 30px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: black;
	background-color: rgba(0,0,0,0.9); /*black with opacity*/
}
/* modal image */
.modal-content {
	margin: auto;
	display: block;
	height: 90%;
	max-width: 300em; /*adjust according to screen */
	
}
img.model-content {
	border-radius: 50px; /* not working */
}
/* caption of modal image */
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}
/*add animation */
.modal-content, #caption {    
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* the close button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
p {
	font: white;
}
footer {
	position: fixed;
	bottom: 0;
	text-align: center;
	width: 95%;
	color: white;
	
}
select{
	font-size: 1em;
}