* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #eee;
}

.drop {
  position: relative;
  width: 300px;
  height: 300px;
  box-shadow: inset 10px 10px 10px rgba(0, 0, 0, 0.05),
    15px 25px 10px rgba(0, 0, 0, 0.05), 15px 20px 20px rgba(0, 0, 0, 0.05),
    inset -10px -10px 15px rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 50px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}

.drop::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 100px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

.drop ion-icon {
  font-size: 10rem;
  color: #444;
}
