/* Buggez coming soon page - standalone, with no WordPress dependencies. */
* {
  box-sizing: border-box;
}

html {
  background: #000;
}

body {
  margin: 0;
  color: #fff;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

/* Matches the original centred, full-screen background crop. */
.background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.coming-soon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 40px 20px;
  text-align: center;
}

.content {
  width: 100%;
  max-width: 1000px;
}

h1 {
  margin: 0;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.428;
  letter-spacing: 2px;
  text-wrap: balance;
}

@media (max-width: 480px) {
  h1 {
    letter-spacing: 1.5px;
  }
}
