@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

#splash {
  height: 300px;
  width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -150px 0 0 -160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shine {
    display: none;
}

@keyframes shine {
0% {
        left: -155%;
}
100% {
        left: 155%;
}
}

@keyframes logoBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10% {
    transform: translate3d(0, -8px, 0);
  }
  30% {
    transform: translate3d(0, -4px, 0);
  }
  60% {
    transform: translate3d(0, -2px, 0);
  }
}

img.logo {
  z-index: 3;
  position: relative;
  max-width: 200px;
  max-height: 120px;
  margin-bottom: 60px;
  animation: logoBounce 3s ease-in-out infinite;
}

.loading-text {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #868686;
  margin: 0;
  position: relative;
  z-index: 5;
  letter-spacing: -0.01em;
}

.dots {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-left: 10px;
  padding-bottom: 4px;
}

.dot1, .dot2, .dot3 {
  opacity: 0;
  animation: dotPulse 1.5s infinite ease-in-out;
}

.dot1 {
  animation-delay: 0s;
}

.dot2 {
  animation-delay: 0.5s;
}

.dot3 {
  animation-delay: 1s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}