.main {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

#spin-container {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 20px;
}

#spinner-text {
  align-self: center;
}

#spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #2f4660;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}