h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Font for body text */
p {
  font-family: 'Open Sans', sans-serif;
}


body {
  background-image: url('images/background.webp'); /* Full-page background */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2c2c2c; /* Dark neutral text color */
  margin: 0;
  padding: 40px;
  background-color: #f5f5f5; /* Fallback color */
}


h1 {
  font-size: 2.5em;
  color: #1e3d59; /* Navy blue */
}

h2 {
  font-size: 2em;
  color: #3a506b;
}

h3 {
  font-size: 1.5em;
  color: #5bc0be;
}

p {
  font-size: 1em;
  line-height: 1.7em;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 800px;
}


.wireframe {
  display: block;
  max-width: 80%;
  margin: 20px auto;
  border: 3px solid #3a506b;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

