
/* CSS Document */

html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,p.normal, p.blockquote,pre,hr,
a,abbr,address,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strong,sub,sup,tt,var,
b,u,i,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary,
time,mark,audio,video{
	margin:0;
	padding:0;
}
/* 

/*------------------------------------
   My style
 ------------------------------------*/
html {
	font: 2em/3 "Lucida Console";
	font-weight:300;
	font-size: 100%;
       
}



<style>




audio {
  width: 15%
  
}

</style>
body 








/* Animated Circles CSS */

.circles {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 10px;
	height: 120px;
	background: rgba(116, 190, 44);
	animation: animate  linear infinite;
	bottom: calc(300px - 40vh);
}

.circles li:nth-child(1) {
	left: 25%;
	width: 8px;
	height: 120px;
	animation-delay: 0s;
	animation-duration: 20s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(116, 190, 44);
}

.circles li:nth-child(2) {
	left: 10%;
	width: 10px;
	height: 140px;
	animation-delay: 0s;
	animation-duration: 25s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}
.circles li:nth-child(3) {
	left: 5%;
	width: 10px;
	height:130px;
	animation-delay: 0s;
	animation-duration: 20s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(4) {
	left: 50%;
	width: 8px;
	height: 120px;
	animation-delay: 0s;
	animation-duration: 15s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(5) {
	left: 65%;
	width: 10px;
	height: 130px;
	animation-delay: 0s;
	animation-duration: 20s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(6) {
	left: 75%;
	width: 8px;
	height: 50px;
	animation-delay: 0s;
	animation-duration: 25s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(7) {
	left: 35%;
	width: 5px;
	height: 140px;
	animation-delay: 0s;
	animation-duration: 30s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(8) {
	left: 50%;
	width: 10px;
	height: 140px;
	animation-delay: 0s;
	animation-duration: 35s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(9) {
	left: 20%;
	width: 8px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 40s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(10) {
	left: 85%;
	width: 10px;
	height: 100px;
	animation-delay: 0s;
	animation-duration: 45s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

.circles li:nth-child(11) {
	left: 50%;
	width: 10px;
	height: 80px;
	animation-delay: 0s;
	animation-duration: 45s;
	border-radius: 50%;
	border-top-left-radius: 0 !important;
	background: rgba(44, 190, 174);
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}
	50% {
		transform: translateY(-60vh) rotate(360deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-120vh) rotate(720deg);
		opacity: 0;
	}



}