.loading-spinner {
  width: 50px;
  height: 50px;
  border: 10px solid rgba(122, 122, 122, 0);
  border-top: 10px solid #000000;
  border-right: 10px solid #000000;
  border-bottom: 10px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  padding:10px;
}

#loadingText {
  color: black;
  padding:10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loading-img {
  width: auto;
  max-height:600px;
  height:60%;
  height: auto;
  padding: 10px;
  padding-bottom:20px;
}

.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    flex-direction: column;
    background-color: white;
}