*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #edeeed;
}

.drops{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.drop{
	position: absolute;
	width: 150px;
	height: 150px;
	background: transparent;
	border-radius: 55% 45% 34% 66% / 40% 67% 33% 60%;
	box-shadow: inset 10px 10px 10px rgba(0,0,0,0.05),
	15px 25px 10px rgba(0,0,0,0.1),
	15px 20px 20px rgba(0,0,0,0.05),
	inset -10px -10px 15px rgba(255,255,255,0.9);
}

.drop::before{
	content: '';
	position: absolute;
	top: 25px;
	left: 35px;
	background: #FFF;
	width: 20px;
	height: 20px;
	border-radius: 36% 64% 45% 55% / 37% 43% 57% 63%;
}

.drop::after{
	content: '';
	position: absolute;
	top: 25px;
	left: 65px;
	background: #FFF;
	width: 10px;
	height: 10px;
	border-radius: 44% 56% 38% 62% / 43% 61% 39% 57%;
}

.drop:nth-child(2){
	transform: scale(0.5) translate(-200px, 180px);
	border-radius: 41% 59% 38% 62% / 38% 52% 48% 62% ;
}

.drop:nth-child(3){
	transform: scale(0.5) translate(280px, 10px);
	border-radius: 41% 59% 41% 59% / 34% 38% 62% 66%;
}

.drop:nth-child(4){
	transform: scale(0.35) translate(120px, -350px);
	border-radius: 43% 57% 47% 53% / 47% 52% 48% 53% ;
}
