.coOcean { 
  fill: rgba(35, 181, 176, 1); 
}

.co1b { 
  fill: rgba(35, 181, 176, .4); 
} 

.blob1 {
  animation-name: blobScale;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transform-origin: 5% 10%;
}

@keyframes blobScale {
 0%   { transform: skew(0); }
 0%   { transform: scale(0.2); } 
 25%  { transform: skew(-25deg); }
 50%  { transform: skew(0); }
 50%  { transform: scale(0.3); }
 75%  { transform: skew(25deg); }
 100% { transform: skew(0); }
 100% { transform: scale(0.3); } 
}



