/* Background Animation */
.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.cube {
	position: absolute;
	width: 80px;
	height: 80px;
	background: rgba(32, 79, 245, 0.05);
	animation: float 10s infinite ease-in-out;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-100px) rotate(180deg);
	}
}