
body { font-family: arial; }

#div-upload {
  position: fixed;
  top: 33%;
  left: 30%;
  right: 30%;
  min-width: 300px;
}

#div-head {
  font-size: 70px;
  margin: 0px 0px 50px 0px;
  text-align: center;
}

#div-info {
  padding: 10px 0px;
}

#div-progress {
  margin: 10px 0px;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}

#progress-text {
  text-align: center;
  grid-area: 1 / 1 / 1 / 1;
}

#progress {
  width: 100%;
  grid-area: 1 / 1 / 1 / 1;
}

#log-container {
  position: fixed;
  width: 99%;
  height: 90%;
}

#log-display {
  height: 100%;
  margin: 0px 5px 0px 0px;
  overflow: scroll;
  border: 1px dashed gray;
}

#div-link-container {
  position: fixed;
  width: 99%;
  height: 5%;
  bottom: 0%;
  text-align: center;
}

#spinner {
  position: fixed;
  overflow: visible;
  margin: 0px 5px;
  width: 15px;
  height: 15px;
  text-align: center;
  align-content: center;
  
  animation-name: spinn-animation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes spinn-animation {
  0% {transform: rotate(0deg)}
  100% {transform: rotate(360deg)}
}
