.main {
    animation: cssAnimation 1.5s ease-in 2.5s; 
    animation-fill-mode: forwards;
    visibility: hidden;
  }
  
  @keyframes cssAnimation {
    100%   { visibility: visible;
  }
    from   {
      opacity: 0;
  }
    to     {
      opacity: 1;
  }
  }
  
    button{
      transition: transform 595ms;
      transform: scale(1);
    }
  
    button:hover{
      transform: translateX(3px) scale(1.1);
    }
  
    .enlarge{
      transition: transform 595ms;
    }
  
    .enlarge:hover{
      transform: scale(1.1) translateX(10vh);
    }
  table{
    border-color: red;
    border-radius: 15px;
    border-width: 15px;
    border-spacing: 5px;
  }
  
  .loading {
    border: 16px;
    border-radius: 20px 40px;
    border-top: 16px solid red;
    border-left: 16px solid greenyellow;
    border-right: 16px solid blue;
    border-bottom: 16px solid purple;
    width: 85px;
    height: 20px;
    animation: spin 2.5s infinite;
    position: relative;
    top: -71vh;
    left: 95vh;
    padding: 4vh;
    animation: Animation 1.5s ease-in 1.5s;
    animation-fill-mode: forwards;
  }
  
  @keyframes Animation {
    from   { 
      opacity: 1;
    }
    to {
      opacity: 0;
      height: 0px;
      width: 0px;
      display: none;
      padding: 0;
    }
  }