body, html {
  background-color: #050d09;

  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Prevent scrollbars */
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas {
  display: block; /* Remove the margin inside the body */
  width: 100%;
  height: 100%;
}

.center-container {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, 'Times New Roman', serif;
}

.wordmark {
  color: #5fcb88;
  font-size: 44px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.downloading-text {
  color: #e6f6ec;
  font-size: 24px; /* Increased font size */
  margin-top: 20px; /* Space below the text */
  margin-bottom: 20px; /* Space below the text */
}
.spinner {
  margin: auto;
  height: 50px;
  width: 50px;
  animation: rotation 0.8s linear infinite;
  border-left: 6px solid rgba(95, 203, 136, 0.2);
  border-right: 6px solid rgba(95, 203, 136, 0.2);
  border-bottom: 6px solid rgba(95, 203, 136, 0.2);
  border-top: 6px solid #7cffb2;
  border-radius: 50%;
}
.progress-bar {
  width: 700px;
  max-width: 80vw;
  background-color: #10261a;
  margin: 20px auto 0; /* Centered with margin top */
}
.progress-bar-inner {
  height: 20px;
  background-color: #5fcb88;
  width: 0%; /* Initial progress */
}
.progress-mb {
  color: #e6f6ec;
  font-size: 24px; /* Size of the MB progress text */
  margin-top: 20px; /* Spacing between the progress bar and the MB progress text */
}
.source-link {
  position: fixed;
  right: 12px;
  bottom: 10px;
  z-index: 10;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  color: rgba(230, 246, 236, 0.45);
  text-decoration: none;
}
.source-link:hover {
  color: #5fcb88;
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

canvas:focus {
    outline: none;
}

* {
    outline: none !important;
}
