/* styles.css */

body {
  background:
    linear-gradient(to bottom, #d8bfd8, #ffb6c1),
    url('FaceOfFaces.jpeg');
  background-repeat: repeat;
  background-size: auto;

  /* Body text settings */
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;   /* ← change this to whatever size you want */
  line-height: 1.1;
  color: #333;
}


.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('FaceOfFaces.jpeg') repeat center center; /* tiled */

  background-size: auto; /* keep natural size for tiling */
  opacity: 0.2; /* semi-transparent */
  z-index: -1;
}

/* Logo styling */

.logo {
  width: 300px; /* Adjust width */
  height: auto; /* Maintain aspect ratio */
  display: block;
  margin: 10px auto; /* Center horizontally with spacing*/
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", "Times New Roman", serif; /* elegant serif */
  font-weight: bold;
  color: #4b0082; /* deep indigo for contrast */
  text-align: center; /* center headings */
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Specific heading tweaks */
h1 {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  ffont-size: 32px;
  border-bottom: 2px solid #4b0082;
  display: inline-block;
  padding-bottom: 5px;
}

h3 {
  font-size: 28px;
  font-style: italic;
}



