/* Mobile-first, responsive "We'll be back" page for bunohoq.com */

html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  color: #222;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  background: rgba(255,255,255,0.95);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 1.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.poem {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #3a3a3a;
}
.poem .emphasis {
  display: block;
  margin-top: 0.7em;
  font-weight: 600;
  color: #1a73e8;
  font-style: italic;
}
.return {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}
@media (min-width: 600px) {
  .container {
    padding: 3.5rem 2.5rem;
    max-width: 520px;
  }
  h1 {
    font-size: 2.7rem;
  }
  .poem {
    font-size: 1.2rem;
  }
}
