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

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: rgb(25, 25, 25);
}
 
#headerAnimation, #buttonAnimation {
  animation: textIn 3.5s forwards;
}

  .splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .splash-text {
    font-size: 48px;
    font-weight: bolder;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
  }
  
  .progress-bar {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 75%;
    height: 16px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .progress-bar-inner {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, rgb(92, 92, 92), rgb(77, 77, 77));
    animation: progress 2s ease-in-out forwards;
  }
  
  @keyframes progress {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
  }

  @keyframes textIn {
    0% {
      opacity: 0;
      transform: translateY(30%);
    }

    100% {
      opacity: 100%;
      transform: translateY(0%);
    }
  }
  
  .loading-indicator {
    margin-top: 16px;
    font-size: 14px;
    color: white;
    text-align: center;
  }