html {
	height: 100%;
	width: 100%;
}

body {
	background-color: #0d0d0d;
	color: white;
	font-family: Arial;
	height: 100%;
	margin: 0;
	width: 100%;
}

.header {
	background-image: url(media/background.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	width: 100%;
}

.header img {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 80%;
}

.project {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	height: 120%;
	padding: 500px 50px 100px;
}

.imageContainer {
	flex: 0 0 50%;
	margin: auto;
	height: 700px;
}

.imageContainer img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.info {
	background: rgba(0, 0, 0, 0.7);
	font-size: 15pt;
	margin: auto 0px auto 150px;
	padding: 20px 30px;
	width: 100%;
}

.info h1{
	margin-top: 0;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.galleryImage {
	cursor: pointer;
	filter: grayscale(70%);
	margin: 5px;
	height: 100px;
	object-fit: contain;
}

.galleryImage:hover {
	filter: grayscale(0%);
}

footer {
	background-color: black;
	color: white;
	padding: 20px;
	text-align: center;
}

details[open] summary {
	border-bottom: 1px solid #FFFFFF;
	padding-bottom: 30px;
}

summary {
	cursor: pointer;
	font-weight: bold;
	margin: 30px;
}

/* media queries for mobile */
@media screen and (max-width: 1000px) {

.project {
	flex-direction: column-reverse;
	padding-top: 200px;
	height: auto;
}

.info {
	margin: auto;
	width: auto;
}

}