.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;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #444444;
}
 
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6e00b3; 
}

.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;
  position: relative;
  top: -100vh;
  padding: 4vh;
  animation: Animation 1.5s ease-in 1.5s;
  animation-fill-mode: forwards;
}

*{
  animation: overflow 1.5s ease-in 1.5s;
  animation-fill-mode: forwards;
  overflow-y: hidden;
  overflow-x: hidden;
}

@keyframes overflow{
  from{
    overflow-y: hidden;
    overflow-x: hidden;
  }
  to{
    overflow-y: visible;
    overflow-x: visible;
  }
}

@keyframes Animation {
  from   { 
    opacity: 1;
  }
  to {
    opacity: 0;
    height: 0px;
    width: 0px;
    display: none;
    padding: 0;

  }
}

.button {
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  transition: 0.3s ease-out;
  cursor: default;
  padding: 10px;
}
.button:hover {
  background: #872420;
}

.overlay {
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 400px;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}