@keyframes darken {
    0% { background-color: rgba(0, 0, 0, 0.3); }
    50% { background-color: rgba(0, 0, 0, 0.8); }
    100% { background-color: rgba(0, 0, 0, 0.3); }
}

body {
    margin: 0;
    position: relative;
    background-image: url(https://images.unsplash.com/photo-1549300461-11c5b94e8855?q=80&w=3540&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    animation: darken 16s infinite;
    transition: background-color 0.5s ease;
    z-index: 0;
}

.title, h5 {
	color: #fff !important;
	opacity: 1;
}
canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.comingsoon-inner {
	z-index: 2;
	position: absolute;
	bottom: 10%;
	padding: 20px;

}
