#openingDiv{
	position: absolute; 
	top: 0;
	width: 100%;	
	height: 100%;

	z-index: 2;

	font-family: 'Helvetica';

	display: flex;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

	cursor: pointer;

	visibility: hidden;

	padding: 240px 15%;

	background-image: url('../_content/_pages/images/opening.jpg');
	background-repeat: no-repeat;
	background-color: white;
}

#openingDiv span{

	width: auto;
	text-align: center;

	display: block;
	margin-left: auto;
	margin-right: auto;

}

#openingDiv p{

	font-size: 24px;
	font-weight: bolder;
	color: white;

	margin-top: 0;

}

#openingDiv #title{

	font-size: 48px;
	font-weight: bolder;
	color: white;

	margin-bottom: 24px;

}

#openingDiv #button{

	font-size: 24px;
	animation: blink-1 1s ease infinite;
	color: white;

}

@keyframes blink-1{
	0%{opacity:0;}
	50%{opacity:1;}
	100%{opacity:0;}
}