*{
	box-sizing: border-box;
}
html, 
body {
    height: 100%;
}
body{
	background: rgb(2,0,36);
	background: linear-gradient(221deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 26%, rgba(0,212,255,1) 56%);
	direction: rtl;
	font-family: B Mitra;
	font-size: 20px;
}
.bubble {
	border-radius: 50%;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
    height: 100px;
	position: fixed;
	width: 100px;
	text-align: center;
	animation: bubblePlay 4s forwards linear;
}
.bubble div{
	padding-top: 40%;
}
@keyframes bubblePlay{
	from{
		top: 120%;
	}
	to{
		top: -20%;
	}
}
#score{
	position: fixed;
	top: 10px;
	right: 10px;
	width: 100px;
	height: 40px;
	border: 1px solid white;
	border-radius: 5px;
	color: white;
	padding: 5px;
}
#container{
	position: fixed;
	width: 100%;
	height: 100%;
}