body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  transition: 300ms;
}

.logo-container {
  overflow: hidden;
  height: 300px;
  margin-bottom: 10px;
}

.logo {
  transform: translateY(300px);
}

.icon-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 1s;
}

.icon {
  margin: 0 8px;
  transition: 300ms;
}
.icon:hover {
  transform: translateY(-5px) scale(1.1);
}
.icon:active {
  transform: scale(1);
}

.info-container {
  margin-top: 15px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  transition: 1s;
  letter-spacing: 10px;
  font-size: 0.8rem;
}

/* Loading styles */

.typing-indicator {
  width: 12px;
  height: 30px;
  position: relative;
  z-index: 4;
}

.typing-circle {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background-color: #000;
  left: 15%;
  transform-origin: 50%;
  animation: typing-circle7124 0.5s alternate infinite ease;
}

@keyframes typing-circle7124 {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 8px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.typing-shadow {
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 30px;
  transform-origin: 50%;
  z-index: 3;
  left: 30%;
  filter: blur(1px);
  animation: typing-shadow046 0.5s alternate infinite ease;
}

@keyframes typing-shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
