html, body {
	font-family: helvetica, arial, sans-serif;
	height: 100%;
	padding: 0;
	margin: 0;
}

#gallery {
	width: 100%;
	height: 100vh;
	z-index: 10;
	overflow-x: unset!important;
}
#overlay {
	position: absolute;
	z-index: 20;
	width: 100%;
	height: 100vh;
	background: rgba(50, 120, 50, 0.2);
	text-align: center;
	font-size: 5rem;
	display: table;
}
.text {
	display: table-cell;
	vertical-align: middle;
}
.text .title {
	background: -webkit-linear-gradient(#fff, rgb(120,255,120));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.text .sub {
	font-size: 1.5rem;
	background: -webkit-linear-gradient(rgb(120,255,120), #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.button button {
	width: 10%;
	font-size: 1.5rem;
	margin: 40px;
	color: #fff;
	background: rgb(120,50,50);
    border: none;
    border-radius: 10px;
	cursor: pointer;
}
.button button:hover {
	background: rgba(120,50,50, 0.5);
}

img {
	cursor: pointer;
}
.footer {
	position: absolute;
	bottom: 30px;
	right: 40px;
}
.footer img {
	width: 30px;
	height: auto;
}

.modal-dialog {
	background: #fff;
}
.modal-body {
	overflow-x: unset!important;
}

@media (max-width: 1280px) {
	#gallery {
		height: 100%;
	}
}

@media (max-width: 980px) {
	.text .title {
		font-size: 7rem;
	}
	.text .sub {
		font-size: 4.5rem;
		background: unset;
		-webkit-background-clip: unset;
		-webkit-text-fill-color: unset;
		color: rgb(120,255,120);
	}
	.button button {
		width: 20%;
		height: 80px;
	}
	.footer img {
		width: 50px;
	}
}
