



#loading-container {
  position:absolute ;
  top:0;
   height: fit-content;
  width: 100%;
  height: 250%;
  min-height: fit-content;



  background-color: #151514e9;
  display: flex;
 padding-top: 300px;
  justify-content: center;align-items: start;
  z-index: 100000000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading-container.hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
  position: fixed;
}



#content {
  text-align: center;
  display: none;
}




