section{
	min-width:300px;
	min-height:auto;
}
section.content{
	/*color:orange;
	background-color:black;*/
	padding:0px;
	/*width:100vw;*/
	height:96vh;
	margin-bottom:10px;
	margin-left:-19px;
	margin-top:-5px;
	margin-right:-5px;
	margin-bottom:-5px;
	text-align: center;
	position: relative;
}
section.header.content{
	margin-top:15px;
}
section.header div.image img.mainImage{
	width: 100%;
	height: 100%;
	left: 50%;
	position: relative;
	transform: translateX(-50%);
	object-fit: cover;
}
section.content .contentHolder{
	position:relative;
	margin-left:auto;
	margin-right:auto;
	margin-top:20px;
	width:600px;
	background-color:pink;
	padding:30px;
	height:90%;
}

/* The arrow for the movment of the screen */
div.downArrow{
	width: 2em;
    height: 2em;
    padding: 0.5em;
	z-index:100;
	position: fixed;
	bottom: 0;
	left: 50%;
    transform: translate(-30%, 0);
	margin: 0 auto;
	margin-bottom:10px;
	text-align: center;
	-webkit-animation:bounceDown 2s infinite;
	color:fff;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	background-color:fff;
	opacity: 0.9;
	filter: alpha(opacity=90);
	border-radius: 2em;
}
	@-webkit-keyframes bounceDown {
		0%, 100%	{ bottom:0px; }	
		50%			{ bottom:25px; }
	}

div.upArrow{
	width: 2em;
    height: 2em;
    padding: 0.5em;
	z-index:100;
	position: fixed;
	top: 50px;
	left: 50%;
    transform: translate(-30%, 0);
	margin: 0 auto;
	margin-bottom:10px;
	text-align: center;
	-webkit-animation:bounceUp 2s infinite;
	color:fff;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	background-color:fff;
	opacity: 0.9;
	filter: alpha(opacity=90);
	border-radius: 2em;
}
	@-webkit-keyframes bounceUp {
		0%, 100%	{ top:50px; }	
		50%			{ top:75px; }
	}

/* Used for testing */
.center_line{
	width:1px;
	height:100%;
	background-color:red;
	margin-left:50%;
	z-index:1000;
	position: fixed;
	top:0px;
	display:none;
}


/* Text covering the main first image */
 .home-main .content1{
	z-index:1;
	position: absolute;
	top:300px;
	left:5%;
    width:40%;
    min-width:300px;
    height:8em;
    /*margin-left:-30%;*/
    margin-left:0px;
    background-color: #fff;
    opacity: 0.9;
	filter: alpha(opacity=90);
    padding:1em;
    color:#000;
    border-radius: 0.5em;
}
.home-main .content2{
	z-index:1;
	position: absolute;
	top:300px;
	right:5%;
    width:40%;
    min-width:300px;
    height:8em;
    margin-right:0%;
    background-color: #fff;
    opacity: 0.9;
	filter: alpha(opacity=90);
    padding:1em;
    color:#000;
    border-radius: 0.5em;		
}
.home-main .header .content1 p
, .home-main .header .content1 ul
, .home-main .header .content2 p
, .home-main .header .content2 ul{
	font-size:2.5em;
	margin:0px;
	width:95%;
	padding:0px;
	overflow:hidden;
}
.home-main .content2 ul{
	position: absolute;
	margin:0px;
	padding: 0px;
	text-align:center;
	height:3em;
	font-size:2em;
	overflow:hidden;
}
.home-main .content2 ul li{
	margin: 25px 0 !important;
	list-style-type: none;
	font-weight:bold;
	color:#006600;
}