@charset "UTF-8";
/* CSS Document */

#home-container{
	width:100vw;
	height:auto;
	position:absolute;
	top:0px;
	left:0px;
	
	display:flex;
	flex-direction:column;
	font-family:gill;
	font-size:14px;
}

#home-upper-half{
	order:1;
	flex-grow:2;
	width:100%;
	height:100vh;
	border:2px solid blue;
	/*background-image:url(../interior/45transgray.png);*/
	box-sizing: border-box;
	
	display:flex;
	flex-direction:column;
}

#main-filler{
	order:2;
	flex-grow:1;
	background-color:lightblue;
}

#home-show-info{
	order:3;
	flex-grow:0;
	height:auto;
	width:100%;
	background-color:blue;
	
	display:flex;
	flex-direction:row;
}

#home-show-info-container{
	width:auto;
	height:auto;
	flex-grow:0;
	
	display:flex;
	flex-direction:column;
	background-color:yellow;
	border:solid 2px black;
	margin-bottom:50px;
	margin-left:50px;
}

#home-show-info-container:hover{
	text-decoration:underline;
}

.home-show-info-item{
	border:solid 1px green;
	margin-bottom:5px;
}

.home-show-info-item:nth-child(1){
	font-size:18px;
}

#home-lower-half{
	order:2;
	width:100%;
	background-color:green;
	border-top:solid 1px gray !important;
	height:50px;
	flex-grow:0;
	
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}

#big-image{
	width:100vw;
	height:100vh;
	position:absolute;
	top:0px;
	left:0px;
	background-image:url(images/2018-exhibitions/thismustbetheplace.jpg);
	background-size:cover;
	z-index:-1;
	filter:contrast(75%) brightness(110%);
}
