body {
  margin: 0;
  background: white;
  font-family: sans-serif;
  color: #303030;
}

.loading-spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid #ccc;
  border-top-color: #303030;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.container {
  width: 100vw;
  min-height: 100vh;
  display: grid;
  place-content: center;
  background: white;
}

.card {
  max-width: 400px;
  margin: auto;
  text-align: center;
  padding: 1rem;
}

.logo {
  transition: all 2s ease-out;
  opacity: 0;
  transform: translateY(50px);
  margin-bottom: 1rem;
}

.logo.animate {
  opacity: 1;
  transform: translateY(0);
}

.link {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid #FFD724;
  border-radius: 0.25rem;
  min-width: 170px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: inherit;
}

.footer {
  font-size: 0.875rem;
  padding: 1rem 0;
}

.footer a {
  color: #FFD724;
  text-decoration: none;
}
