#loading-wrapper{
    background-color:black;
}

#loading-text{
    color: white;
    margin-top: 50px;
}

#beaker{
  height: 180px;
  width: 180px;
  border: 5px solid white;
  border-top: none;
  border-radius: 0px 0px 20px 20px;
  margin: 100px auto;
}

#solution{
  width: 170px;
  height: 160px;
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  
  background-size: 1800% 1800%;
  position:relative;
  border-radius: 0px 0px 20px 20px;
  left: 5px;
  top: 15px;
  -webkit-animation: rainbow 18s ease infinite;
  -z-animation: rainbow 18s ease infinite;
  -o-animation: rainbow 18s ease infinite;
  animation: rainbow 18s ease infinite;
}
-webkit-animation: rainbow 18s ease infinite;
-z-animation: rainbow 18s ease infinite;
-o-animation: rainbow 18s ease infinite;
  animation: rainbow 18s ease infinite;}

@-webkit-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@keyframes rainbow { 
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}

#solution:after {
  background-color: rgba(255, 255, 255, 0.25);
  bottom: 0px;
  border-radius: 10px 20px 20px 20px;
  content: '';
  height: 170px;
  left: 0px;
  position: absolute;
  width: 70px;
  overflow: hidden;
}
#bubble1 {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  left: 1%;
  top: 80%;
  bottom: 0;
  border-radius: 10px;
  height: 20px;
  width: 20px;
  animation-name: example;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

#bubble2 {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  left: 15%;
  top: 60%;
  bottom: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  animation-name: example;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

#bubble3 {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  left: 45%;
  top: 34%;
  bottom: 0;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

#bubble4 {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  left: 60%;
  top: 20%;
  bottom: 0;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  animation-name: example;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
}

#bubble5 {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  left: 75%;
  top: 0%;
  bottom: 0;
  border-radius: 10px;
  height: 20px;
  width: 20px;
  animation-name: example;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes example {
  0%   {bottom: '-0px'; opacity: 1;}
  25%   {top: -30px; opacity: .8;}
  50%   {opacity: 0;}
  100%   {opacity: 0;}
}