.loader-container {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 20px;
  height: 100vh;
}

.loader-container > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 20px;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  animation: spin 3s linear infinite;
}

.loader-content > p {
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body {
  font-family: Arial;
}
