#confetti-container {
	position: relative;
	width: 100vw;
	height: 100px;
	overflow: hidden;
}

.confetti {
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #f1c40f;
	animation: confetti-fall linear;
	opacity: 0.8;
	transform-origin: center;
}

@keyframes confetti-fall {
	0% {
		transform: translateY(-10vh) rotate(0deg);
	}
	100% {
	  	transform: translateY(110vh) rotate(720deg);
	}
}