body {
  background-color: #121212;
}

.loading {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo {
  width: 200px;
}

.loader {
  margin: 15px;
  border: 4px solid #121212;
  border-radius: 50%;
  border-top: 4px solid #fc8608;
  border-right: 4px solid #121212;
  border-bottom: 4px solid #fc8608;
  border-left: 4px solid #fc8608;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

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

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