.overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f9f9f9;
	z-index: 2;
	cursor: pointer;
}

.overlay-text {
	position: relative;
	top: 50%;
	left: 50%;
	font-size: 20px;
	color: black;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.overlay-image img {
    max-width: 100% !important;
    height: 100%;
    width: 100%;
}

.landing-page-button{
  position: fixed;
  bottom: 20px;
  margin: 0 auto;
  width: 75%;
}

 @media only screen and (min-width: 0){
.landing-page-button{
	transform: translate(10%, -50%); 
}
}

@media only screen and (min-width: 992px){
.landing-page-button{
	transform: translate(13%, -50%); 
}
}

@media only screen and (min-width: 1200px){
.landing-page-button{
	transform: translate(5%, -50%); 
}
} 