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

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

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

img {
	cursor: pointer;
}

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

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

@media (max-width: 480px) {
	.button button {
		width: 20%;
		height: 80px;
	}
}
