
  @import url('https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
  
    body {
      background: url('tree.jpg') no-repeat center center fixed;
      background-size: cover;
      overflow-x: hidden;
      height: 100vh;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }
     .page-title {
  font-family: "Monsieur La Doulaise", cursive;
  font-size: 5rem;
  margin: 45px 0 -40px; /* top, right/left, bottom spacing */
  text-align: center;
  color: #ffc81d;
  letter-spacing: 3px;
}

 .box-headers {
  font-family: "Edu NSW ACT", cursive;
  font-size: 2rem;
  margin-bottom: -25px;
  text-align: center;
  color: #d6929c;
  letter-spacing: 3px;
}

    p {
      font-family: "Courier Prime", monospace;
      max-width: 100%;
      line-height: 1.7;
      font-size: 1.15rem;
      color: 	#e9ba4e;
      text-align: center;
      user-select: text;
      z-index: 10;
      position: relative;
      padding: 5px;
    }

    a {
      color: 	#d6929c;
      text-decoration: none;
      border: none;
      transition: color 0.3s ease;
    }
    
    .page-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 50px 20px;
      gap: 15px;
    }
    
    .content-box {
      background-color: #b08e23;
  padding: 5px;
  border-radius: 0; 
  max-width: 600px;
  width: 90%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
    }

    .nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 1px;
}

.nav-btn {
  font-family: "Edu NSW ACT", cursive;
  background-color: 	#d0e4e2;
  color: 	#d6929c;
  text-decoration: none;
  padding: 5px 25px;
  border-radius: 0px;
}

.back-home-btn {
  position: fixed;
  top: 30px; /* adjust as needed */
  left: 30px;
  z-index: 3; /* must be higher than overlay-image's z-index */
}

.back-home-btn img {
  width: 120px; /* or however big you want the button */
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.back-home-btn img:hover {
  transform: scale(1.1);
}

.monsieur-la-doulaise-regular {
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
}

.edu-nsw-act-cursive-<uniquifier> {
  font-family: "Edu NSW ACT Cursive", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

  @media only screen and (max-width: 600px) {
  h1 {
     font-size: 10vw;
    }
  }