body {
  margin: 0;
}

.load__icon {
  animation: linear load 2s infinite;
  width: 24px;
  height: 24px;
}

.load__icon-wrap {
  margin: auto;
}

.load {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgb(23, 26, 37) !important;
}

@keyframes load {
  from {
    transform: rotate(0deg) scale(2);
  }

  to {
    transform: rotate(360deg) scale(2);
  }
}
