@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000c4;
    z-index: 9999;
    font-size: 2rem;
    overflow: hidden;
}
@keyframes float {
	to {
	  	transform: translateY(0.75em);
	}
}  
.dot {
	background: #fff;
}
.dot, .dot:after {
	display: inline-block;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	animation: a 1.5s calc(((var(--i) + var(--o, 0))/var(--n) - 1)*1.5s) infinite;
}
.dot:after {
	--o: 1;
	background: #151515;
	content: "";
}

@keyframes a {
	0%, 50% {
		transform: scale(0);
	}
}

.a {
    margin: auto;
    display: block;
    position: relative;
    left: 46%;
    bottom: 0;
    top: 47%;
    zoom: .5;
}

@media (max-width: 576px) {
	.a {
        left: 30%;
	}
}