* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	height: 100%;
	width: 100%
}

body {
	background:white;
	color: darkslategrey;
	font: normal 16px/1.3 Arial;
	height: 100%;
	width: 100%;
	/* overflow: hidden */
}

p {
	text-align: justify;
	margin: 10px 0;
}

header {
	width: 100%;
	height: calc(100% - 80px);
	margin: 0 auto;
}

.heading {
	font-size: 2rem;
	text-align: center;
}

.title {
	position: relative;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 100px;

}

.title1 {
	font-size: 30px
}

.title2 {
	font-size: 100px
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 auto;
	height: 80px;
}

#buttons {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
}

button {
	width: 80px;
	height: 40px;
	background: steelblue;
	color: cornsilk;
	cursor: pointer;
	border-radius: 40px;
	border: none;
	margin: 0 10px;
}

button:hover {
	background: cornsilk;
	color: steelblue;

}

.border {
	border: 1px solid lightgrey;
}

.center {
	text-align: center;
}

.small {
	font-size: 12px;
}

#left {
	position: fixed;
	top: 40px;
	left: -100%;
	width: 100%;
	height: calc(100% - 120px);
	background: white;
	transition: 1s;
	z-index: 99;
	overflow: hidden;
}

#right {
	position: fixed;
	top: 40px;
	left: 100%;
	width: 100%;
	height: calc(100% - 120px);
	background: white;
	transition: 1s;
	z-index: 99;
	overflow: hidden;
}

.about {
	width: 80%;
	max-width: 450px;
	height: 90%;
	margin: 0 auto;
	overflow-y: scroll;
	scrollbar-width: none
}

#container {
	width: 100%;
	height: calc(100% - 80px);
	margin: 0 auto;
}

/* Image Gallery */
.gallery {
	width: 80%;
	max-height: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	overflow-y: scroll;
	scrollbar-width: none;
}

.gallery>figure {
	height: 150px;
	flex: 1 1 auto;
}

.gallery>figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	vertical-align: top;
}

figcaption {
	font-size: 12px;
	text-align: center;
	background: white;
	padding: 3px 0;
	margin-top: -6px;
}

/* Modal */
#modal {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 600px;
	height: 600px;
	background: transparent;
	z-index: 9999
}

#modal-close {
	position: relative;
	top: 0;
	left: calc(100% - 30px);
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: cornsilk;
	text-align: center;
	line-height: 1;
	cursor: pointer
}

#heading {
	font-size: 25px;
	color: cornsilk;
	text-align: center
}

#detail {
	width: 80%;
	margin: 10px auto
}

#content {
	width: 100%;
}

#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background:#252744; */
	background: linear-gradient(to bottom right, #252744, steelblue);
	opacity: 1;
	z-index: 999
}

.modal-img {
	width: 100%;

}