.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #ddd;
  border-top-color: #555;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a1a1a;
}

main {
  max-width: 640px;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 0.25rem;
}

.location {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 1.5rem;
  font-style: italic;
}

p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.more {
  font-size: 0.95rem;
  color: #888;
  margin-top: 2rem;
}
