* {
  border: none;
  padding: 0;
  margin: 0;
}
#loading {
  background-color: white;
  /* background-color: #6b5aed; */
  /* color: white; */
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading img {
  height: 120px;
  width: 120px;
}

#logo_container #spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo_container #spinner img {
  height: 80px;
  width: 80px;
  animation: rotate 2s infinite linear;
}

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