@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');

body{
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 100%);
	margin: 0px;
	font-family: 'Crimson Text', serif;
	color: #fff;
	text-shadow: 0px 0px 3px #333333;
}
header{
	height: 100vh;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.col{
	flex-grow: 1;
	width: 50%;
	height: 100vh;
	position: relative;
}
#imgLeft{
	background-image: url('../_images/mainImg_left.jpg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center center;
}
#imgRight{
	background-image: url('../_images/mainImg_right.jpg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center center;
}
#moveBox1{
	position: absolute;
	bottom: 0px;
	width: 100%;
}
#moveBox2{
	position: absolute;
	bottom: 0px;
	width: 100%;
}
a{
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
a:hover{
	filter: grayscale(100%);
}
h1{
	font-size: 0px;
}
h2{
	font-weight: normal;
	margin-top: 0px;
	font-size: 21px;
}
img{
	width: 350px;
	height: auto;
}
footer{
	display: none;
}
@media only screen and (max-width: 768px){
	.col{
		flex-grow: 1;
		width: 100%;
		height: 50vh;
	}
	#imgLeft{
		background-position: left;
		text-align: right;	
	}
	#imgRight{
		background-position: right;
		text-align: left;
	}
	#imgLeft h2, #imgLeft img{
		margin-right: 20px;
	}
	#imgRight h2, #imgRight img{
		margin-left: 20px;
	}
	img{
		width: 250px;
	}
	#moveBox1{
		top: 0px;
	}
	#moveBox2{
		top: 0px;
	}
}
@media only screen and (max-width: 520px){
	#imgLeft{
		background-size: auto 130%;
		background-position: top center;
	}
	#imgRight{
		background-size: auto 150%;
		background-position: top left;
	}
}