html {
	height: 100%;
	background: url(wolters-ventures_bg.webp) no-repeat center center fixed;
	background-color: '#000000';
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	box-shadow: inset 0 0 0 100vh rgba(0,0,0,.4);
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}

div#main {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

div#logo-container {
	padding-bottom: 30px;
	height: 50vh;
	display: flex;
	align-items: flex-end;
	box-sizing: border-box;
}

.svg-logo {
	/*width: 348px;
	height: 300px;*/
	height: 300px;
	width: auto;
}

div#bottom-section {
	width: 100%;
	height: 50vh;
	font-size: 1.2em;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
}

h2 {
	color: #ffffff;
	margin: 0;
	padding: 20px 0 30px 0;
	font-size: 1.2em;
	position: relative;
}

h2, div#project-gallery{
	width: 50%;
}

div#project-gallery {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

h2:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
	top: 0px;
    height: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background-position: 0% 0%;
    /* background: linear-gradient(to right, #B294FF, #57E6E6, #FEFFB8, #57E6E6, #B294FF, #57E6E6); */
	background: linear-gradient(to right, #a2b9bc, #6b8dae, #ced4da, #6b8dae, #a2b9bc, #6b8dae);
    background-size: 500% auto;
    -webkit-animation: gradient 3s linear infinite;
    animation: gradient 3s linear infinite;
	z-index: 1;
}

	div#project-gallery img {
		margin: 0 20px 20px 20px;
	}

a#contact {
	padding: 15px 30px;
	border-radius: 15px;
	background-color: rgba(0,0,0,.3);
	display: inline-block;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

a#contact:hover {
    background-color: rgba(0,0,0,.4);
    box-shadow: 0 2px 4px rgba(0,0,0,.5);
}

/* smaller devices, phones */
@media (max-width: 575.98px) {
	div#logo-container {
		height: 35vh;
	}

	.svg-logo {
		height: 200px;
	}

	h2, div#project-gallery {
		width: 90%;
	}
}

/* medium devices (phones in landscape mode and small tablets) */
@media (min-width: 576px) and (max-width: 767.98px) {

}

/* large devices (tablets) */
@media (min-width: 768px ) and (max-width: 991.98px) {

}

/* https://www.dafontfree.io/montserrat-font-family/ */