body{
	 margin: 0;
     padding: 0;
     overflow: hidden;
}
.container {
      padding-top: 112px;
      text-align: left;
      color: white;
    }

marquee{
	height: 100vh;
}

.ball{
	max-width: "300px";
	animation: pelota 3s linear infinite;
}

.ball2{
	rotate: "-45px";
	max-width: "300px";
	animation: aiuda 10s linear infinite;
}

@keyframes pelota {
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

@keyframes aiuda {
	0%{
		transform: rotate(-45deg);
	}
	100%{
		transform: rotate(45deg);
	}
}



#loader{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #21242d url('hammaya-relaxed.gif') no-repeat center;
	z-index: 999;
}