/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-page background image */
body {
  background: url('background.jpg') no-repeat center center/cover;
  height: 100vh;
  width: 100vw;
  font-family: "neulis-neue", sans-serif;
font-weight: 400;
font-style: normal;
  color: #fff;
}

/* Semi-transparent overlay (optional, for better text contrast) */
.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered content box */
.content-box {
  max-width: 440px;
  padding: 0 20px;
  text-align: center;
}

/* Logo styling */
.logo {
  width: 120px;
  max-width: 80%;
  margin-bottom: 0rem;
}

/* Heading */
h1 {
    font-size: 6rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
font-family: "neulis-neue", sans-serif;
font-weight: 300;
font-style: normal;
    line-height: 6rem;
}

/* Paragraph */
p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 auto 0rem; /* centers the paragraph block itself */
    color: #f5f5f5;
    text-align: center;
    max-width: 390px;
    font-family: "neulis-neue", sans-serif;
font-weight: 400;
font-style: normal;
}

/* Signature SVG */
.signature {
  width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
  p {
    font-size: 0.95rem;
  }
}
