@keyframes bar-animation {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.4);
  }
  100% {
    transform: scaleY(1);
  }
}
.animation-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bars {
  display: flex;
  align-items: flex-end;
  margin-top: 2cqmin;
}

.bar {
  width: 20px;
  height: 150px;
  background-color: #000;
  margin: 0 5px;
  animation: bar-animation infinite;
  transform-origin: bottom;
  animation-timing-function: steps(5, end);
}

.logo {
  width: calc(20px * 18);
  height: auto;
}

.lines {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column-reverse;
}

.line {
  height: 4px;
  background-color: white;
  margin-bottom: 4.5882352941px;
}

.line:nth-child(18) {
  margin-bottom: 0;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s;
}

.bar:nth-child(1) {
  animation-duration: 0.3s;
  height: 55px;
}

.bar:nth-child(2) {
  animation-duration: 0.6s;
  height: 28px;
}

.bar:nth-child(3) {
  animation-duration: 0.4s;
  height: 100px;
}

.bar:nth-child(4) {
  animation-duration: 0.7s;
  height: 37px;
}

.bar:nth-child(5) {
  animation-duration: 0.6s;
  height: 145px;
}

.bar:nth-child(6) {
  animation-duration: 0.5s;
  height: 78px;
}

.bar:nth-child(7) {
  animation-duration: 0.4s;
  height: 39px;
}

.bar:nth-child(8) {
  animation-duration: 0.5s;
  height: 139px;
}

.bar:nth-child(9) {
  animation-duration: 0.4s;
  height: 130px;
}

.bar:nth-child(10) {
  animation-duration: 0.5s;
  height: 77px;
}

.bar:nth-child(11) {
  animation-duration: 0.7s;
  height: 87px;
}

.bar:nth-child(12) {
  animation-duration: 0.6s;
  height: 22px;
}

.bar:nth-child(13) {
  animation-duration: 0.4s;
  height: 111px;
}

.bar:nth-child(14) {
  animation-duration: 0.4s;
  height: 59px;
}

.bar:nth-child(15) {
  animation-duration: 0.7s;
  height: 82px;
}

.bar:nth-child(16) {
  animation-duration: 0.6s;
  height: 89px;
}