.spinner {
  height: 120px;
  width: 120px;
  animation: rotate 2s linear infinite;
}

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

.loading {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 16px;
}

.loadMore {
  display: flex;
  justify-content: center;
}

.loadingbtn {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  font-size: 16px;
  color: white;
  height: 40px;
  border-radius: 12px;
  width: 100px;
  border: 2px solid white;
  filter: drop-shadow(0 0 7px rgb(255, 255, 255, 0.65));
  margin-bottom: 80px;
  user-select: none;
  transition: background-color ease 0.3s;
}

.loadingbtn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 0 7px rgb(255, 255, 255, 1));
}