* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right top, black, darkred, red);
}
.wrapper .loading {
  font-size: 200px;
  position: relative;
}
.wrapper .loading::before {
  content: "loading... ";
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  animation: load 8s infinite linear;
}

@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
