
html, html *, html *:before, html *:after {
    box-sizing: border-box;
  }
  
  html, body, #root, .App {
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  main {
    padding: 0;
    height: 40px;
  }
  
  #showMeTheBubbles {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin: 0 0;
    bottom: 0;
    overflow: hidden;
  }
  
  .ball {
    width: 150px;
    height: 150px;
    position: absolute; 
    bottom: -150px; 
    left: 50%;
    z-index: 2;
    -webkit-animation: bar 7s ease-in infinite;
    animation: bar 7s ease-in infinite;
    -webkit-animation-delay: 0s; /* Safari 4.0 - 8.0 */
    animation-delay: 0s;
    will-change: auto top;
  }
  
  .ball.empty {
    width:50px;
    height: 50px;
  }
  .photo {
    width:100%;
    height:100%;
  }
  
  .bubbleImg {
    position: absolute;
    top:0;
    left:0;
    margin: 0;
    padding:0;
    width: 100%;
    height: 100%;
  }
  
  .photo {
    width:100%;
    height:100%;
    background-image: 'images/logo.png';
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
  
  }
  
  .bubbles {
    width:38%;
    height:31%;
    position: absolute;
    top: 31%;
    left: 29%;
    z-index: 10;
  }
  
  @keyframes bar
  {
    0% {
      top: 100%;
    }
    100% {
      top: 0%;
    }
  }
  
  @-webkit-keyframes bar {
    0% {
      top: 100%;
  
    }
    100% {
      top: 0%;
  
    }
  }
  