.space {
  height: 10vw;
}
.small-space {
  height: 3vw;
}

.loading-page {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: none;
  z-index: 1000000000;
  cursor: none;
}

.loader {
  justify-content: center;
  align-items: center;
  background-image: linear-gradient( rgb(255, 255, 255), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)), url("./images/background.png");
  background-position: 00% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  cursor: none;
  flex-direction: column;
  height: 100vh;
  padding: 0;
  margin: 0;
  text-align: left;
}

.loader h1 {
  color:rgb(255, 255, 255);
  font-family: 'PressStart2P';
  font-size: 30pt;
  text-shadow: -1px -1px rgb(255, 255, 255), 1px 1px rgb(0, 0, 0);
  text-transform: uppercase;
  z-index: 10000000000;
  position: relative;
}

.progress {
  background: rgb(255, 255, 255);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  padding: 0 8px;
  z-index: 100000000;
  display: flex;
  height: 40px;
  width: 640px;
  box-shadow: 0px 8px 200px 20px #000000;
}

.progress-value {
  animation: load 3s normal forwards;
  border-radius: 100px;
  background: #00d42e;
  height: 25px;
  width: 0;
}

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

@keyframes load {
  0% {
     width: 0;
     background: #ff0000;
}
  50% {
     width: 50%; 
     background: #ffa600;
}
  100% { 
     width: 100%; 
}
}
@media screen and (max-width: 680px) {
  .loader h1 {
    font-size: 20pt;
  }
  
  .progress {
    height: 20px;
    width: 450px;
  }
  
  .progress-value {
    height: 10px;
  }
}