@import url("https://fonts.googleapis.com/css?family=Sacramento&display=swap");
body {
  background: #f3ebe6;
  animation: backgroundred 2.5s infinite;
}

.container,
.glass,
.glass-one,
.glass-two,
.cup,
.small-cup,
.middle-cup,
.pipe,
.base,
.base-shadow {
  position: absolute;
}

.container {
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 500px;
}
.container .glass {
  width: 150px;
  height: 150px;
}
.container .glass .cup {
  width: 81px;
  height: 67px;
  z-index: 4;
  border: 4px solid #3b3b4f;
  box-sizing: border-box;
  border-radius: 15px 0px 50px 50px;
}
.container .glass .small-cup {
  width: 62px;
  height: 39px;
  background: #CF3E48;
  border-radius: 15px 0px 50px 50px;
  top: 27px;
  opacity: 0.85;
  z-index: 1;
  animation: winepink 2.5s infinite;
}
.container .glass .middle-cup {
  width: 78px;
  height: 54px;
  background: #FF737B;
  border-radius: 5px 5px 50px 50px;
  top: 13px;
}
.container .glass .pipe {
  width: 11px;
  height: 73px;
  border: 4px solid #3b3b4f;
  box-sizing: border-box;
  border-radius: 0px 0px 50px 50px;
  top: 66px;
}
.container .glass .base {
  width: 58px;
  height: 39px;
  border: 4px solid #3b3b4f;
  box-sizing: border-box;
  border-radius: 100px;
  top: 120px;
}
.container .glass .base-shadow {
  width: 53.41px;
  height: 33.74px;
  background: #A7B8F4;
  border-radius: 100px;
  top: 130px;
}
.container .glass-one {
  animation: glass-one-animation 2.5s infinite;
}
.container .glass-one .cup {
  left: 50px;
}
.container .glass-one .small-cup {
  right: 40px;
}
.container .glass-one .middle-cup {
  right: 13px;
}
.container .glass-one .pipe {
  left: 85px;
  z-index: 3;
}
.container .glass-one .base {
  left: 62px;
  z-index: 3;
}
.container .glass-one .base-shadow {
  left: 70px;
  z-index: 1;
}
.container .glass-two {
  animation: glass-two-animation 2.5s infinite;
}
.container .glass-two .cup {
  left: 155px;
}
.container .glass-two .small-cup {
  left: 153px;
}
.container .glass-two .middle-cup {
  left: 166px;
}
.container .glass-two .pipe {
  left: 190px;
  z-index: 3;
}
.container .glass-two .base {
  left: 168px;
  z-index: 3;
}
.container .glass-two .base-shadow {
  left: 174px;
  z-index: 1;
}

@keyframes glass-one-animation {
  0% {
    left: 0px;
    bottom: 150px;
  }
  50% {
    left: 15px;
    bottom: 200px;
  }
  100% {
    left: 0px;
    bottom: 150px;
  }
}
@keyframes glass-two-animation {
  0% {
    right: 100px;
    bottom: 150px;
  }
  50% {
    right: 160px;
    bottom: 200px;
  }
  100% {
    right: 100px;
    bottom: 150px;
  }
}
@keyframes backgroundred {
  0% {
    background: #f3ebe6;
  }
  50% {
    background: #D04049;
  }
  100% {
    background: #f3ebe6;
  }
}
@keyframes winepink {
  0% {
    background: #CF3E48;
  }
  50% {
    background: #ECC6C8;
  }
  100% {
    background: #CF3E48;
  }
}