body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: white;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  animation: fadeOut 1s ease-in-out 1s forwards;
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.loading-text {
  color: #4b0082;
  font-size: 18px;
  margin-top: 20px;
}

.loading-dots::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes dots {

  0%,
  20% {
    content: '';
  }

  40% {
    content: '.';
  }

  60% {
    content: '..';
  }

  80%,
  100% {
    content: '...';
  }
}