body {
  font-family: Verdana;
  color: #fff;
  padding: 0;
  margin: 5px;
}
.main {
  width: 100%;
  display: none;
}
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.vote {
  display: none;
  flex-grow: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bar {
  width: 100%;
  height: 0px;
  max-height: 60px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  border-radius: 2px 2px 0 0;
  transition: height 500ms ease-in-out;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 60px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.users li {
  padding: 5px 0 0 0;
  transform: translateY(-10px);
  animation: hide 1s linear forwards;
  font-size: 12px;
  font-weight: bold;
}
.stats {
  display: flex;
  justify-content: space-between;
  padding: 0 5px 5px 5px;
  font-size: 12px;
}
h1  {
  padding: 0;
  margin: 0;
}
span {
  font-weight: bold;
}
#timeLeft {
  width: 100%;
  height: 5px;
  margin: 0 0 5px 0;
}
#progress {
  display: none;
  width: 100%;
  background-color: #fff;
  height: 100%;    
}
@keyframes timeLeft {
  0% {
    width: 100%;
    opacity: 1;
  }       
  100% {
    width: 0%;
    opacity: 0.2;
  }
}
@keyframes hide {
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}