body {
  background: #e0e0de;
  padding: 15em 5em 5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar {
  position: relative;
  width: 300px;
  border-bottom: solid 4px #5c2048;
}

.wine {
  position: relative;
  left: 190px;
  width: 35px;
  height: 70px;
  border: solid 4px #5c2048;
  border-radius: 24% 24% 0 0;
}

.wine::before,
.wine::after {
  content: "";
  position: absolute;
}

.wine::before {
  top: -38px;
  left: 11px;
  width: 5px;
  height: 30px;
  border: solid 4px #5c2048;
}

.wine::after {
  top: -42px;
  left: 6px;
  width: 24px;
  height: 4px;
  border-bottom: solid 4px #5c2048;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cup {
  position: absolute;
  bottom: 20px;
  right: 35px;
  width: 20px;
  height: 35px;
  border: solid 4px #5c2048;
  border-radius: 0 0 40% 40%;
}

.cup::before,
.cup::after {
  content: "";
  position: absolute;
}

.cup::before {
  bottom: -22px;
  left: calc(50% - 2px);
  height: 20px;
  border-right: solid 4px #5c2048;
}

.cup::after {
  width: 20px;
  height: 5px;
  bottom: -25px;
  border-bottom: solid 4px #5c2048;
}

.logo {
  position: absolute;
  font-size: 25px;
  padding-top: 5px;
  color: #5c2048;
  font-weight:900;
}
.logo.d-0 {
  left: 4px;
}
.logo.d-1 {
  left: 54px;
}
.logo.d-2 {
  left: 104px;
}
.logo.d-0::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 25px;
  z-index: -1;
  width: 6px;
  height: 6px;
  border: solid 4px #5c2048;
  border-radius: 50%;
}

.cup-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #5c2048;
  transition: height 3s linear;
}

.wine-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: #5c2048;
  transition: height 3s linear;
}

.container{
  position: absolute;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}

img{
  width: 350px;
}
