@font-face {
    font-family: water;
    src: url(water.otf);
  }
  
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: water;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #edeeed;
}

.title{
    position: absolute;
    top: 10%;
}

.drops{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop{
    position: absolute;
    height: 150px;
    width: 150px;
    background-color: transparent;
    border-radius: 57% 43% 37% 63% / 51% 53% 47% 49%;
    box-shadow: inset 10px 10px 10px rgba(0, 0, 0, 0.5),
    15px 25px 10px rgba(0, 0, 0, 0.1),
    15px 20px 2px rgba(0, 0, 0, 0.05),
    inset -10px -10px 15px rgba(255, 255, 255, 0.9);
}

.drop::before{
    content: '';
    position: absolute;
    top: 25px;
    left: 65px;
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 25% 75% 37% 63% / 40% 43% 57% 60%;
}

.drop::after{
    content: '';
    position: absolute;
    top: 25px;
    left: 65px;
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 57% 43% 37% 63% / 48% 37% 63% 52%;
}

.drop:nth-child(2){
    transform: scale(0.5) translate(-200px, 180px);
    border-radius: 64% 36% 42% 58% / 42% 37% 63% 58% ;
}

.drop:nth-child(3){
    transform: scale(0.5) translate(280px, 10px);
    border-radius: 49% 51% 42% 58% / 56% 47% 53% 44% ;
}

.drop:nth-child(4){
    transform: scale(0.5) translate(120px, -350px);
    border-radius: 39% 61% 63% 37% / 77% 47% 53% 23% ;
}


h1 {
    position: relative;
    color: black;
    opacity: .3;
    text-align: center;
    padding-inline: 10px;
 
  }
 
