#main
{
    display: table;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    position: absolute;
    pointer-events: none;
}

#main > div 
{
    display: table-cell;
    vertical-align: middle;
}

#pagetxt
{
    font-size: 3vw;
    margin:0 1vw;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .loader {
    display: flex;
    justify-content: space-between;
    width: 80px;
  }
  
  .loader div {
    width: 16px;
    height: 16px;
    background-color: #FF5C35;
    border-radius: 50%;
    animation: grow-shrink 1.5s infinite;
  }
  
  .loader div:nth-child(1) {
    animation-delay: 0s;
  }
  
  .loader div:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .loader div:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes grow-shrink {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }