/* reset */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: transparent;
}

.background {
  min-height: 100vh;
  background-color: #0b0b0b;
  background-image: url("lace.jpg");
  background-repeat: no-repeat;      /* do NOT repeat */
  background-size: cover;            /* stretch to cover page */
  background-position: center top;   /* center horizontally, top vertically */
}

}




/* site header */
.site-header {
  text-align: center;
  padding: 60px 20px;

}

.site-header h1 {
  font-family: 'Parisienne', cursive;
  font-size: 56px;
  color: #d8b4c6;
  margin: 0;
}

.site-subtitle {
  font-style: italic;
  color: #c9a2b4;
  margin-top: 10px;
}

/* main content container */
.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid #3b1f2b;
  text-align: center;
  position: relative;
}

/* optional: lace border effect placeholder */
.container::before, .container::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 10px solid rgba(216,180,198,0.7); /* pink lace placeholder */
  pointer-events: none;
}


