@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  background-image: url('../assets/background.png');
  background-color: #05080A; /* fallback color while image loads or if missing */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #111827;
}
p {
  margin: 0;
  text-align: center;
  color: #BDB7AF;
  font-size: 1.05rem;
}
/* Links: lighter blue with stronger hover */
a {
  color: #60a5fa;
}

a:hover, a:focus {
  color: #3b82f6;
  outline: none;
}
