body {
  margin: 0;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: rgb(37, 51, 64);
}

.loader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: rotate 3s linear infinite;
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
