body, html {
  background-image: 
	linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 8, 5) 60%),
	url('https://hypersomnia.xyz/assets/images/horizontal_banner.png');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #000805;
  background-attachment: fixed;

  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%);
}
.downloading-text {
  color: white; /* White text color */
  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(0, 255, 0, 0.2);
  border-right: 6px solid rgba(0, 255, 0, 0.2);
  border-bottom: 6px solid rgba(0, 255, 0, 0.2);
  border-top: 6px solid #4CFF50;
  border-radius: 50%;
}
.progress-bar {
  width: 700px;
  background-color: rgb(0, 52, 0);
  margin: 20px auto 0; /* Centered with margin top */
}
.progress-bar-inner {
  height: 20px;
  background-color: #4CAF50;
  width: 0%; /* Initial progress */
}
.progress-mb {
  color: white; /* White text color */
  font-size: 24px; /* Size of the MB progress text */
  margin-top: 20px; /* Spacing between the progress bar and the MB progress text */
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

canvas:focus {
    outline: none;
}

* {
    outline: none !important;
}
