#loadingscreen {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  z-index: 1000;
  color: white;
}

#loader-wrapper {
  position: absolute;
  width: 90%;
  max-width: 1080px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  justify-content: space-between;
}

#progress {
  width: 320px;
  height: 64px;
  background-color: #757BFD;
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  margin: auto;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background: white;
}

#loading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: black;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta {
  width: 320px;
  height: 64px;
  font-size: 20px;
  background: #542BEC;
  color: white;
  margin: auto;
}

.cta:hover {
  background: white;
  color: black;
}

@media only screen and (max-width: 600px) {
  .cta {
    width: 100%;
  }

  #progress {
    width: 100%;
  }
}