body, html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background-color: #1c1c1c;
}

#landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.landing {
  margin: 20px 0;
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top: 5px solid #5600B8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.landing-title {
    color: rgb(255, 255, 255);
}

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