html,
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	padding: 0;
	margin: 0;
	background-color: rgba(40, 11, 11, 1);
	font-family: "Arvo";
}

@media screen and (max-width: 768px) {
	.is-hidden-mobile {
		display: none !important;
	}
}

@media screen and (min-width: 769px) {
	.is-hidden-tablet {
		display: none !important;
	}
}

.footer {
	background-color: rgba(40, 11, 11, 1);
	color: #FFFFFF;
	text-align: center;
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.footer a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.75rem !important;
}

/* Loading Screen */
.overlayLoader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 40;
	cursor: wait;
	text-align: center;
	color: #fff;
	-webkit-animation: fade 0.3s ease-in-out;
	animation: fade 0.3s ease-in-out;
}

.overlayLoader .imgProcessing {
	width: 60%;
	margin: auto;
}

.overlayLoader .loaderBox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Footer */
.footer {
	background-color: var(--bulma-primary-dark);
}

.footer .title {
	color: var(--bulma-primary-dark-invert);
}

.footer p {
	color: var(--bulma-white);
}