#menuToggle {
    display: none;
}

#menuButton {
    display: none;
    position: absolute;
    z-index: 101;
    top: 0; 
    right: 0;
}

#menuButtonIcon svg {
    width: 24px;
    height: 24px;
}

#menu {
    display: none;
}
/* Hide both menus by default */
#horizontalMenu, #verticalMenu {
    display: none;
}

/* Show hamburger menu and make vertical menu on smaller screens */
@media only screen and (max-width: 599px) {
    #menuButton {
        display: block; 
        transform: translateX(-20px); /* Moves the button 20px to the left */
    }

    #menu {
        display: none; /* hide menu by default on smaller screens */
    }

    #menuToggle:checked ~ #menu {
        display: block; /* show menu when menuToggle is checked */
    }

    #menuToggle:not(:checked) ~ #menu {
        display: none; /* hide menu when menuToggle is unchecked */
    }
}


/* CSS for larger screens */
@media only screen and (min-width: 600px) {
    #horizontalMenu {
        display: flex; /* show horizontal menu */
    }
     #menu {
        display: flex; /* show menu */
    }
}

/* CSS for smaller screens and mobile responsiveness */
@media only screen and (max-width: 599px) {
    #horizontalMenu {
        display: none; /* hide horizontal menu */
    }
    #verticalMenu {
        display: none; /* initially hide vertical menu */
    }
    /* Rest of your code... */
}

/* Other styles, such as font-size adjustments, omitted for brevity */

/* zacs */
#zac {
    color: #0fed0f; /* adjust color as needed */
    font-size: 1.2em; /* adjust size as needed */
    font-weight: bold; /* for bold */
}

/* mansion */
#mansion {
    color: #000000; /* adjust color as needed */
    font-size: 1.2em; /* adjust size as needed */
    font-weight: bold; /* for bold */
}

/* Style for navigation bar */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
}

nav li {
    float: left;
}

/* navigation text */
nav li a {
    display: block;
    color: black; /* changed color to black */
    font-size: 20px;
    font-weight: bold; /* change font-style to font-weight for bold */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover {
    background-color: #6f797e;
}

/* navigation bar */
#navigation {
    background-color: #ffffff;
    z-index: 1;
    top: 0px;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    justify-content: flex-start; /* align items to the left */
    flex-wrap: wrap; /* allow items to wrap onto next line */
    position: sticky;
    align-items: center;
    text-overflow: ellipsis;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    height: 50px;
}

.navMenuLinkContent {
    color:green;
}

/* Style for vertical menu (mobile) */
#verticalMenu {
    display: flex; /* initially show as horizontal */
    flex-direction: column; /* make it vertical */
}

.header-container {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
    display: flex;
    justify-content: space-between; /* aligns items to both ends */
    align-items: center; /* vertically centers items */
}

/* zacsmansion */
#BMXenTgpbloRwTMx {
    color: #20cd8d;
    text-align: left;
    font-style: italic;
    font-size: 2em; /* adjust size as needed */
    margin-left: 20px;
}

/* Rest of your code stays the same */

.offset-anchor::before {
    content: '';
    display: block;
    height: 50px; /* match your header's height */
    margin: -50px 0 0; /* negative of your header's height */
    visibility: hidden;
}
#page-28A h1 {
    text-align: center;
}
   #page-28A ul {
        list-style-type: none; /* Remove bullets */
         font-size: 22px;
    }

      .highlighted-text {
        background-color: yellow; /* You can change the background color as desired */
    }

  #page-28A li {
        font-family: 'Verdana', sans-serif;
        font-size: 16px;
        line-height: 1.5; 
         }

#page-1 {
    z-index: 0;
    overflow: hidden;
    grid-template-columns: auto 100rem auto;
    display: grid;
    position: relative;
    align-items: center;
    background-color: #ffffff;
    transform: scale(1, 1);
    width: 100%;
    height: 100%;
}

#page-1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-area: 1 / 2 / 2 / 3;
}

#page-1-content .image-container {
    display: grid;
    min-height: 100%;
    grid-area: 1 / 1 / 2 / 4;
    min-width: 100%;  
}


#page-1-content .image-container .image-text-container {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#page-1-content .image-container .image-text-container .animated-image {
    transform: none;
    margin: 0;
}

#page-1-content .image-container .image-text-container .animated-image img {
    display: block;
    object-fit: contain;
    width: 80%;
    height: 7auto;
    margin-left: 190px;
  
}

#page-1-content .image-container .image-text-container .image-text {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; 
}

#page-1-content .image-container .image-text-container .image-text .text-line {
    color: #ffffff;
    font-weight: bold;
    font-family: Garamond, serif;
    font-size: 40px;
    text-shadow: 4px 4px 10px #ed1c1c;
    animation: fadeIn 4s;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}


@media (max-width: 600px) {
    #page-1-content .image-container .image-text-container .animated-image img {
        width: 50%;
        height: 600px;
        margin-left: 20px;      
    }
    /* Example of increasing text size */
    #page-1-content .image-container .image-text-container .image-text .text-line {
          font-size: 24px;
       }
    #page-1-content .image-container .image-text-container .image-text {  
    bottom: 120px;  
}
}



#page-2 {
  background-color: white;
}
#page-2 #page-31-content {
    width: 80%;
    margin: 0 auto;
}

#page-2 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-2 .image-text-container {
    width: 48%;
}

#page-2 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-2 .text-container {
    text-align: center;
     background-color:white; 
    padding: 10px; 
    border-radius: 25px; 
    margin-top: -20px;
}

#page-2 h1 {
    text-align: center;
}


#page-2 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-2 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-2 .image-text-container {
          font-family: 'Courier New', Courier, monospace;
    font-size: 0.8em;
        width: 100%;
       
    }

}


#page-3 {
  background-color: rgb(196, 234, 243);
}
#page-3 #page-31-content {
    width: 80%;
    margin: 0 auto;
}

#page-3 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-3 .image-text-container {
    width: 48%;
}

#page-3 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-3 .text-container {
    text-align: center;
    border-radius: 25px; 
    margin-top: -10px;
}

#page-3 h1 {
    text-align: center;
    margin-bottom: 10px;
  
}


#page-3 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-3 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-3 .image-text-container {
          font-family: 'Courier New', Courier, monospace;
    font-size: 0.8em;
        width: 100%;
       
    }

}



#page-4 {
 background-color: rgb(219, 243, 202);
}
#page-4 #page-4-content {
    width: 90%;
    margin: 0 auto;
}

#page-4 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-4 .image-text-container {
    width: 48%;
}

#page-4 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-4 .text-container {
    text-align: center;
     background-color:rgb(193, 234, 245); 
    padding: 2px; 
    border-radius: 35px; 
    margin-top: 10px;
    width: 70%;  /* width of border */
    margin-left: 50px;
}

#page-4 h1 {
    text-align: center;
    margin-bottom: 10px;
}


#page-4 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-4 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-4 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-4 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}
/* page 5*/

#page-5 {
 background-color: rgb(115, 128, 107);
}
#page-5 #page-5-content {
    width: 90%;
    margin: 0 auto;
}

#page-5 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-5 .image-text-container {
    width: 48%;
}

#page-5 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-5 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: white;
}

#page-5 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-5 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-5 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-5 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}

#page-6 {
 background-color: rgb(173, 203, 210);
}
#page-6 #page-6-content {
    width: 90%;
    margin: 0 auto;
}

#page-6 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-6 .image-text-container {
    width: 48%;
}

#page-6 .image-text-container img {
    width: 100%;
    height: auto;
}


#page-6 h1 {
    text-align: center;
    margin-bottom: 10px;
}


#page-6 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-6 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-6 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-6 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}

#page-7 {
   background-color: #e5fbd3; /* Light blue */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

#page-7 .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px; /* adjust as per the requirement */
    width: 100%;
}

#page-7 h1 {
    text-align: left;
    color: #000000;
    font-family: Garamond, serif;
    font-size: 2.34em; /* 30% bigger */
    margin-bottom: -10%; /* adjust to move down */
    margin-left: 15%; /* adjust to move left */
    align-self: flex-start; /* aligns the header to the left */
}

#page-7 .image-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 5px; /* add a 5px gap between images */
}

#page-7 .image-item img {
    width: 100%;
}


#page-7 .image-description {
    background: #a4c8ec;
    padding: 1em;
    text-align: center;
    color: #000;
    font-family: Garamond, serif;

    font-size: 1.3em; /* 30% bigger */
  
    border-radius: 5px; /* add rounded corners */
    margin: 0.5em; /* increase margin for a slightly bigger background */
}
@media (max-width: 600px) {
    #page-7 .image-item img {
    width: 100%;
}
#page-7 .image-item:nth-child(2) img {
    margin-bottom: 40px;

}
#page-7 h1 {
    text-align: left;
    font-size: 1.4em; /* 30% bigger */
    margin-left: 10px;
}

 #page-7 .image-description { 
        font-size: 1em;
}
}


#page-8 {
 background-image: url('http://zacsmansion.com/images/lake.jpg'); /* add this line */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#page-8 #page-8-content {
    width: 90%;
    margin: 0 auto;
}

#page-8 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-8 .image-text-container {
    width: 48%;
    
}

#page-8 .image-text-container img {
    width: 100%;
    height: auto;
}


#page-8 h1 {
    text-align: center;
    margin-bottom: 10px;
}


#page-8 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.7em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
        line-height: 0.3;

   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-8 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-8 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-8 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
    
 
   
}
}

#page-9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#page-9 h1 {
    text-align: center;
    font-family: Garamond, serif;
    font-size: 2em;
    color: black;
    margin-bottom: 20px;
}

#page-9 .image-container img {
    width: 100%;
    max-width: 900px; /* Adjust as needed */
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 600px) {
    #page-9 h1 {
        font-size: 1.5em;
    }

    #page-9 .image-container img {
        width: 100%;
        height: auto;
    }
}

/* page 10*/

#page-10 {
 background-color: rgb(115, 128, 107);
}
#page-10 #page-10-content {
    width: 90%;
    margin: 0 auto;
}

#page-10 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-10 .image-text-container {
    width: 48%;
}

#page-10 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-10 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: white;
}

#page-10 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: white;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-10 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-10 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-10 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}

/*page 11*/



#page-11 {
 background-color: rgb(204, 246, 179);
}
#page-11 #page-11-content {
    width: 90%;
    margin: 0 auto;
}

#page-11 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-11 .image-text-container {
    width: 48%;
}

#page-11 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-11 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-11 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-11 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-11 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-11 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}

#page-12 {
    background-image: url('http://zacsmansion.com/images/6408801509c6ded46c02e4d9262a921f.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

#page-12 #page-12-content {
    width: 90%;
    margin: 0 auto;
}

#page-12 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-12 .image-text-container {
    width: 48%;
}

#page-12 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-12 .text-container {
    text-align: center;
     background-color:rgb(193, 234, 245); 
    padding: 2px; 
    border-radius: 35px; 
    margin-top: 20px;
    width: 90%;  /* width of border */
    margin-bottom: 10px;
    line-height: 1;
    
}

#page-12 h1 {
    text-align: center;
    margin-bottom: 10px;
}


#page-12 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-12 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-12 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-12 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}

#page-13 {
     background-image: url('http://zacsmansion.com/images/skylight.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

#page-13 #page-12-content {
    width: 90%;
    margin: 0 auto;
}

#page-13 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-13 .image-text-container {
    width: 48%;
}

#page-13 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-13 .text-container {
    text-align: center;
     background-color:rgb(248, 230, 187); 
    padding: 2px; 
    border-radius: 35px; 
    margin-top: 20px;
    width: 90%;  /* width of border */
    margin-bottom: 10px;
    line-height: 0.5;
    
}

#page-13 h1 {
    text-align: center;
    margin-bottom: 10px;
}


#page-13 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-13 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-13 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-13 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}

#page-14 {
     background-color: rgb(158, 164, 147);
}

#page-14 #page-14-content {
    width: 90%;
    margin: 0 auto;
}

#page-14 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-14 .image-text-container {
    width: 48%;
}

#page-14 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-14 .text-container {
    text-align: center;
     background-color:rgb(241, 191, 99); 
    padding: 2px; 
    border-radius: 35px; 
    margin-top: 20px;
    width: 90%;  /* width of border */
    margin-bottom: 10px;
    line-height: 0.5;
    
}

#page-14 h1 {
    text-align: center;
    margin-bottom: 10px;
}


#page-14 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.7em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-14 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-14 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-14 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.3em;
 
   
}

}


/* ..image 15 */
#page-15 {
    display:grid;
    align-items:center;
    background-color: #efede9;
    width: 100%;
    height: 100%;
    grid-template-columns:auto 100rem auto;
}
#page-15 {
    display:grid;
    align-items:center;
    background-color: #efede9;
    width: 100%;
    height: 100%;
    grid-template-columns:auto 100rem auto;
}

#page-15-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    grid-area: 1 / 2 / 2 / 3;
}

#page-15-content h1 {
     font-family: Garamond, serif;
     font-style: italic;
    text-align:left;
    color:#000000;
    
    font-size: 1.8em; 
    font-weight: bold; 
    margin-left: 80px;
}

#page-15-content .image-container img {
    display:block;
    object-fit:cover;
    width:65%;
    height:100%;
    margin-top: -20px;
    margin-left: 30px;
}

#page-15-content .image-container {
    grid-column: 1 / 2;
}
/* stiarcase view properties */
#page-15-content .text-container {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  
    color: #3a14e6;
    margin-left: -35%;
    margin-top: -10%;
    line-height: 0.2;
}

#page-15-content.h2 {
     font-family: Garamond, serif;
     font-style: italic;
    text-align:left;
    color:#15e92e;
    font-size: 1.8em; 
    font-weight: bold; 
    margin-left: 0px;
}
#page-15-content .text-container ul {
    list-style-type: none;
    padding-left: 50px;
 
    
}

#page-15-content .text-container li {
    font-family: "Brush Script MT", cursive;
    font-size: 0.2em;
    font-weight: normal;
    color: #53494c;
   font-size: 22px;
    line-height: 1.3; 
}

.header2 {
    color: black;
    margin-left:60px;
}
.header3 {
    color: #0f21ed;
    margin-left: 50px;
}
.highlight {
    color: red;
}

@media (max-width: 768px) {
    #page-15 {
        grid-template-columns: 1fr;
    }
    
    #page-15-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    #page-15-content .image-container {
        grid-row: 2;
        grid-column: 1;
        margin-left: -10px; /* Move the image 10px to the left */
    }

    #page-15-content .image-container img {
        width: 100%; 
        height: auto;
    }

    #page-15-content .text-container {
        grid-row: 3;
        grid-column: 1;
        margin-top: -5px; /* Move the text container down by 5px */
        margin-left: 30px; /* Move the text container 100px to the right */
    }

    #page-15-content h1 {
        font-family: "Brush Script MT", cursive;
        font-size: 18px;
        grid-row: 1;
        text-align: center;
        margin-bottom: 30px;

    }

    #page-15-content .text-container ul {
        padding: 0; /* Remove padding */
        font-size: 10px;
    }

    #page-15-content .text-container li {
       margin-bottom: 10px;
        font-size: 20px;
            line-height:1.2;
    }
    .header3 {
        line-height: 0.4;
    }
}

#page-16 {
 background-color: rgb(204, 246, 179);
}
#page-16 #page-16-content {
    width: 90%;
    margin: 0 auto;
}

#page-16 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-16 .image-text-container {
    width: 48%;
}

#page-16 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-16 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-16 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-16 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-16 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-16 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}
/* page 17 */
#page-17 {
 background-color:white;
}
#page-17 #page-17-content {
    width: 90%;
    margin: 0 auto;
}

#page-17 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-17 .image-text-container {
    width: 48%;
   
}

#page-17 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-17 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-17-content p   {
    text-align: center;
    font-family: "Brush Script MT", cursive;
    font-size: 28px;   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-17 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }
    #page-17 .image-text-container {
      
    font-size: 1.2em;
        width: 100%;
    }
#page-17-content p   {
    font-size: 20px; 
}

}
/* page18 */
#page-18 {
 background-color:rgb(225, 215, 234);
}
#page-18 #page-18-content {
    width: 90%;
    margin: 0 auto;
}

#page-18 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-18 .image-text-container {
    width: 48%;
   
}

#page-18 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-18 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-18-content p   {
    text-align: center;
    font-family: "Brush Script MT", cursive;
    font-size: 28px;  
    margin-top: 10px; 
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-18 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }
    #page-18 .image-text-container {
      
    font-size: 1.2em;
        width: 100%;
    }
#page-18-content p   {
    font-size: 20px; 
}

}
/* image19 */
#page-19 {
 background-color: rgb(189, 169, 200);
}
#page-19 #page-19-content {
    width: 90%;
    margin: 0 auto;
}

#page-19 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-19 .image-text-container {
    width: 48%;
}

#page-19 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-19 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-19 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.7em;
    font-weight: normal; 
    color: black;
    margin-top: 10px;
    text-align: center;
   
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-19 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }

    #page-19 .image-text-container {
      
    font-size: 0.8em;
        width: 100%;
    }
    #page-19 .images-container .image-text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.5em;
 
   
}

}
/* page 20*/

#page-20 {
 background-color:rgb(246, 239, 203);
}
#page-20 #page-20-content {
    width: 90%;
    margin: 0 auto;
}

#page-20 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-20 .image-text-container {
    width: 48%;
   
}

#page-20 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-20 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-20-content p   {
    text-align: center;
    font-family: "Brush Script MT", cursive;
    font-size: 28px;  
    margin-top: 10px; 
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-20 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }
    #page-20 .image-text-container {
      
    font-size: 1.2em;
        width: 100%;
    }
#page-20-content p   {
    font-size: 20px; 
}

}
/* page 21*/
#page-21 {
 background-color:rgb(244, 209, 85);
}
#page-21 #page-21-content {
    width: 90%;
    margin: 0 auto;
}

#page-21 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-21 .image-text-container {
    width: 48%;
   
}

#page-21 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-21 .image-text-container:nth-child(2) img {
    width: 92%;

}

#page-21 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-21-content p   {
    text-align: center;
    font-family: "Brush Script MT", cursive;
    font-size: 28px;  
    margin-top: 10px; 
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-21 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }
    #page-21 .image-text-container {
      
    font-size: 1.2em;
        width: 100%;
    }
#page-21-content p   {
    font-size: 20px; 
}
#page-21 .image-text-container:nth-child(2) img {
    width: 100%;

}

}
/* page 22*/


#page-22 {
 background-color:rgb(249, 232, 170);
}
#page-22 #page-22-content {
    width: 90%;
    margin: 0 auto;
}

#page-22 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-22 .image-text-container {
    width: 48%;
   
}

#page-22 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-22 .image-text-container:nth-child(2) img {
    width: 92%;

}

#page-22 h1 {
    text-align: center;
      margin-bottom: 10px;
      color: black;
}

#page-22-content p   {
    text-align: center;
    font-family: "Brush Script MT", cursive;
    font-size: 28px;  
    margin-top: 10px; 
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-22 .images-container {
        flex-direction: column;
        align-items: normal;
      
    }
    #page-22 .image-text-container {
      
    font-size: 1.2em;
        width: 100%;
    }
#page-22-content p   {
    font-size: 20px; 
}
#page-22 .image-text-container:nth-child(2) img {
    width: 100%;

}

}

#page-23 {
    z-index:0;
    overflow:hidden;
    grid-template-columns:auto 60rem auto;
    background-color: #908d91;
    width: 100%;
    height: 100%;
    display:grid;
    margin-top:-1px;
    position:relative;
    align-items:center;
}

#page-23-content {
    display:flex;
    flex-direction:column;
    align-items:center;
    grid-area:1 / 2 / 2 / 3;
}

#page-23-content h1 {
    text-align:center;
    margin-bottom: 1%;
    font-family: Garamond, serif;
    font-size: 1.8em; 
    font-weight: bold; 
    color: black;
}

#page-23-content .images-container {
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items: center; 
    margin-bottom: -20px; /* margin-bottom for space above the caption */
}

#page-23-content .images-container .image-text-container {
    width: 95%; /* Reduced from 95% to 90% */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin: 0 6px;
}

#page-23-content .images-container .image-text-container img {
    display:block;
    object-fit:cover;
    width:100%;
    height:100%;
}

#page-23-content p {
    font-family: "Brush Script MT", cursive;
    font-size: 1.9em;
    font-weight: normal; 
    color: white;
    text-align: center;
    margin-bottom: 5px; /* Adjusted margin-bottom */
    line-height: 1.2;   /* Adjusted line-height */
}
@media (max-width: 768px) {
    #page-23-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    #page-23-content .images-container {
        flex-direction: column;
        align-items: center;
    }

    #page-23-content .images-container .image-text-container {
        margin-bottom: 10px; /* Add a gap between the images */
    }

    #page-23-content .images-container .image-text-container img {
        width: 50%; 
        height: auto;
    }
    #page-23-content p {
        margin-top: 20px; /* Adjust the space above the text as per your needs */
        margin-bottom: 20px; /* Adjust the space below the text as per your needs */
        font-family: Arial, sans-serif; /* Change the font to Arial */
        font-size: 0.77em; /* Adjust the font size */
        width: 100%; /* Control the width of the text */
        text-align: justify; /* Justify the text */
        padding: 0; /* Remove padding */
        box-sizing: border-box; /* Include padding and border in element's total width and height */
    }
}


/* ... Repeat this pattern for the rest of the elements, using their IDs and their respective styles ... */
#page-24 {
    display:grid;
    align-items:center;
    background-color: #efede9;
    width: 100%;
    height: 100%;
    grid-template-columns:auto 100rem auto;
}
#page-24 {
    display:grid;
    align-items:center;
    background-color: #efede9;
    width: 100%;
    height: 100%;
    grid-template-columns:auto 100rem auto;
}

#page-24-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    grid-area: 1 / 2 / 2 / 3;
}

#page-24-content h1 {
     font-family: Garamond, serif;
     font-style: italic;
    text-align:left;
    color:#000000;
    
    font-size: 2em; 
    font-weight: bold; 
    margin-left: 80px;
}

#page-24-content .image-container img {
    display:block;
    object-fit:cover;
    width:65%;
    height:100%;
    margin-top: -20px;
    margin-left: 30px;
}

#page-24-content .image-container {
    grid-column: 1 / 2;
}

#page-24-content .text-container {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #53494c;
    margin-left: -30%;
    margin-top: -10%;
    line-height: 0.2;
}

#page-24-content .text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 0.9em;
    font-weight: normal; 
    color: #53494c;
    margin-left: 20px;
    font-size: 30px;
    line-height: 0px; 
}

#page-24-content .text-container ul {
    list-style-type: none;
    padding-left: 50px;
}

#page-24-content .text-container li {
    font-family: "Brush Script MT", cursive;
    font-size: 0.9em;
    font-weight: normal;
    color: #53494c;
    font-size: 26px;
    line-height: 1.5; 
}

#page-24-content .text-container .link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 20px;
    font-size: 20px;
    margin-left: 30px;
    margin-bottom: -10px;
    line-height: 2;
}

#page-24-content .text-container .video-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 30px;
    font-size: 20px;
    margin-left: 30px;
}

@media (max-width: 768px) {
    #page-24 {
        grid-template-columns: 1fr;
    }
    
    #page-24-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    #page-24-content .image-container {
        grid-row: 2;
        grid-column: 1;
        margin-left: -10px; /* Move the image 10px to the left */
    }

    #page-24-content .image-container img {
        width: 100%; 
        height: auto;
    }

    #page-24-content .text-container {
        grid-row: 3;
        grid-column: 1;
        margin-top: -5px; /* Move the text container down by 5px */
        margin-left: 100px; /* Move the text container 100px to the right */
    }

    #page-24-content h1 {
        font-family: "Brush Script MT", cursive;
        font-size: 28px;
        grid-row: 1;
        margin-left: 0;
        text-align: center;

    }



    #page-24-content .text-container ul {
        padding: 0; /* Remove padding */
        margin-top: 20px; /* Remove margin-top */
    }

    #page-24-content .text-container li {
        line-height: 1; /* Decrease line-height */
        margin-left: 20px;
    }
}

/* ... Repeat this pattern for the rest of the elements, using their IDs and their respective styles ... */
#page-25 {
    display:grid;
    align-items:center;
    background-color: #efede9;
    width: 100%;
    height: 100%;
    grid-template-columns:auto 100rem auto;
}


#page-25-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    grid-area: 1 / 2 / 2 / 3;
}

#page-25-content h1 {
  
    color:#000000;
    font-family: Garamond, serif;
    font-size: 1.8em; 
    font-weight: bold; 
    margin-left: 200px;
}

#page-25-content .image-container img {
    display:block;
    object-fit:cover;
    width:100%;
    height:100%;
    margin-top: -20px;
    margin-left: 30px;
}

#page-25-content .image-container {
    grid-column: 1 / 2;
}

#page-25-content .text-container {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #53494c;
    margin-left: 10%;
    margin-top: -10%;
    line-height: 0.2;
}

#page-25-content .text-container p {
    font-family: "Brush Script MT", cursive;
    font-size: 0.9em;
    font-weight: normal; 
    color: #53494c;
    margin-left: 20px;
    font-size: 30px;
    line-height: 0px; 
}

#page-25-content .text-container ul {
    list-style-type: none;
    padding-left: 50px;
}

#page-25-content .text-container li {
    font-family: "Brush Script MT", cursive;
    font-size: 0.9em;
    font-weight: normal;
    color: #53494c;
    font-size: 26px;
    line-height: 1.5; 
}
@media (max-width: 768px) {
    #page-25 {
        grid-template-columns: 1fr;
    }
    
    #page-25-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    #page-25-content .image-container {
        grid-row: 2;
        grid-column: 1;
    }

    #page-25-content .image-container img {
        width: 100%; 
        height: auto;
    }

    #page-25-content .text-container {
        grid-row: 3;
        grid-column: 1;
        margin-top: -5px; /* Moves the text container down by 30px */
    }

    #page-25-content h1 {
        grid-row: 1;
        margin-left: 0;
        text-align: center;
    }

    #page-25-content .text-container h2 {
        margin-bottom: 20px; /* Remove margin-bottom */
    }

    #page-25-content .text-container ul {
        padding: 0; /* Remove padding */
        margin-top: 0; /* Remove margin-top */
    }

    #page-25-content .text-container li {
        line-height: 1.4; /* Decrease line-height */
    }
}



#page-26 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#page-26 h1 {
    text-align: center;
    font-family: Garamond, serif;
    font-size: 2em;
    color: black;
    margin-bottom: 20px;
}

#page-26 .image-container img {
    width: 100%;
    max-width: 900px; /* Adjust as needed */
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 600px) {
    #page-26 h1 {
        font-size: 1.5em;
    }

    #page-26 .image-container img {
        width: 100%;
        height: auto;
    }
}

/* Desktop styles */
#page-27 {
    width: 80%;
    margin: 0 auto;
}

#page-27 h1 {
    text-align: center;
}

#page-27 .text-container {
    border: 2px solid blue;
    padding: 20px;
}

#page-27 .text-container ul {
    list-style: none;
    padding: 0;
    line-height:1.6;
    font-size: 20px;
}
#page-27 .text-container ul ul {
    padding-left: 2rem;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    #page-27 {
        width: 100%;
        padding: 10px;
    }
    #page-27 .text-container ul {
    line-height:1.4;
}
#page-27 .text-container ul ul {
    padding-left: 1.4rem;
}
}

/* Desktop styles */
#page-28 {
    width: 80%;
    margin: 0 auto;
}

#page-28 h1 {
    text-align: center;
}

#page-28 .text-container {
    border: 2px solid blue;
    padding: 20px;
}

#page-28 .text-container ul {
    list-style: none;
    padding: 0;
    line-height:1.6;
    font-size: 20px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    #page-28 {
        width: 100%;
        padding: 10px;
    }
    #page-28 .text-container ul {
    
    line-height:1.4;
   
}
}


/*
#page-28 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #F5F5DC; 
}

#page-28 h1 {
    text-align: center;
    font-weight: bold;
    color: #000000;
    font-family: Garamond, serif;
    font-size: 2.34em; 
    margin-bottom: 0.2em;   
}

#page-28 .text-container {
    border: 2px solid red;
    padding: 0.2rem 1rem; 
    font-family: Garamond, serif;
    font-size: 1.5em; 
    color: #000;
    margin-left: 50px;
}


#page-28 ul {
    list-style: none;
    padding: 0;
}

#page-28 ul ul {
    padding-left: 2rem;
}

#page-28 ul .highlight {
    color: red;
}*/
/* background-image: url('http://zacsmansion.com/images/buidling template.jpg'); 
    background-repeat: no-repeat;
    background-position: center;  */
#page-29 {
   background-image: url('http://zacsmansion.com/images/buidling template.jpg'); 
    background-repeat: no-repeat;
    background-position: center; 
 
    background-color: #cceaef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
}

#page-29 h1 {
    text-align: center;
    font-family: Garamond, serif;
    font-size: 2em;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}

#page-29 .image-container {
    max-width: 100%;
    height: auto;
}

#page-29 .image-container img {
    width: 90%;
    height: auto;
    object-fit: cover;
    margin-left: 20px;
}

@media only screen and (max-width: 600px) {
    #page-29 h1 {
        font-size: 1.3em;
        margin-top: 20px;
    }

  
}


/*  background-image: url('http://zacsmansion.com/images/buidling template1.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
#page-30 {
    background-image: url('http://zacsmansion.com/images/buidling template1.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #cceaef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
}

#page-30 h1 {
    text-align: center;
    font-family: Garamond, serif;
    font-size: 2em;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}

#page-30 .image-container {
    max-width: 100%;
    height: auto;
}

#page-30 .image-container img {
    width: 90%;
    height: auto;
    object-fit: cover;
    margin-left: 20px;
}

@media only screen and (max-width: 600px) {
    #page-30 h1 {
        font-size: 1.3em;
        margin-top: 20px;
    }

  
}

/* Desktop styles */

#page-31 {
    background-image: url('http://zacsmansion.com/images/land.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#page-31 #page-31-content {
    width: 80%;
    margin: 0 auto;
}

#page-31 .images-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#page-31 .image-text-container {
    width: 48%;
}

#page-31 .image-text-container img {
    width: 100%;
    height: auto;
}

#page-31 .text-container {
    background-color: #f8f8f8; /* You can change this color as needed */
    padding: 20px;
    text-align: center;
     background-color: rgb(236, 198, 127); 
    padding: 20px; 
    border-radius: 5px; 
}

#page-31 h1 {
    text-align: center;
    margin-top: 30px;
 
}

/* Mobile styles */
@media screen and (max-width: 768px) { 
    #page-31 .images-container {
        flex-direction: column;
        align-items: normal;
    }

    #page-31 .image-text-container {
        width: 100%;
        margin-bottom: 20px;
    }
}


#page-31b {
    z-index:0;
    overflow:hidden;
    grid-template-columns:auto 60rem auto;
    background-color: #ffffff;
    width: 100%;
    height: auto; /* Same height as #page-31 */
    display:grid;
    margin-top:-1px;
    position:relative;
    align-items:center;
    
}

#page-31b-content {
    display:flex;
    flex-direction:column;
    align-items:center;
    grid-area:1 / 2 / 2 / 3;
    position: relative; /* Add this to enable absolute positioning of the child elements */
    width: 100%;
   
     
}

#page-31b-content h1 {
    font-family: Garamond, serif;
    font-size: 50px;
    text-align: center;
    color: black;
    position: absolute;
    top: 30%; /* Adjust according to your needs */
    width: 100%;
      
}

#page-31b-content .image-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;

}

#page-31b-content .image-container img {
    max-width: 80%;
    height: auto;
    
}
@media (max-width: 600px) { /* Adjust the breakpoint value as needed */
#page-31b-content {
    width: 40%;   
}
#page-31b-content h1 {
   
    font-size: 30px;
 
    top: 10%; /* Adjust according to your needs */
 
      
}
}

/* for image 32- 73 */
.page-image {
    display: block;
    max-width: 80%;
    height: 100%;
  
    margin-top: 20px;
    margin-left: 170px;
}
.page-image {
    display: block;
    max-width: 60%; /* Adjust this to desired maximum width */
    height: auto;
    margin: 20px 350px; /* Add a margin to all sides of the image */
}
@media (max-width: 600px) { /* Adjust the breakpoint value as needed */
  .page-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-left: 0;
  }
}

#page-74 {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust this value to match the height of your image pages */
    width: 100%; /* Adjust this value to match the width of your image pages */
}

#page-74 .text-container {
    border: 2px solid blue;
    padding: 10px;
    width: 70%; /* Reduced from 80% to 70% */
    height: 80%; /* Adjust this value as necessary */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left; /* Adjusted to center the text horizontally within the container */
    gap: -190px; /* Adjust this value as necessary */
    margin-bottom: 50px;
}

#page-74 .text-container p {
    font-family: Garamond, serif;
    font-weight: bold; /* Corrected from font-style to font-weight */
    color: black;
    text-shadow: 7px 5px 8px gray; /* This gives the text a ghost-like shade */
    font-size: 2.3em; /* You can adjust the size as necessary */
    text-align: left; /* Adjusted from center to left */
    line-height: 1.4; /* Adjusted line-height */
   
    margin-top: 50px;
}



#page-74 .text-container p:nth-child(2) {
    color: red;
   margin-top: -10px;
}
#page-74 .text-container p:nth-child(3) {
   font-size:1.8em ;
    margin-top: -10px;
}

@media (max-width: 600px) { /* Adjust the breakpoint value as needed */
    #page-74 .text-container {
   
    width: 90%; /* Reduced from 80% to 70% */
    height: 60%; /* Adjust this value as necessary */
   
}

    #page-74 .text-container p {
   
    font-size: 1.9em; /* You can adjust the size as necessary */
   
}

#page-74 .text-container p:nth-child(3) {
   font-size:1.2em ;

}

}




.page-image1 {
      display: block;
    max-width: 60%;
    height: auto;
    margin-top: 20px;
    margin-left: 320px;
}
@media (max-width: 600px) { /* Adjust the breakpoint value as needed */
  .page-image1 {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-left: 0;
  }
}
#page-103 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#page-103 .image-text-container {
    position: relative;
    display: inline-block;
    font-family: Garamond, serif;
    font-weight: bold; /* Adjust this to make the font bold */
   
}

#page-103 .page-image {
    width: 100%;
    max-height: 70vh;
    
}

#page-103 .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 10%;
    color: black;
    margin-top: -200px;
}

#page-103 .overlay-text h1 {
    font-size: 2.4em;
    text-align: center;

    margin-right: -30px;
     margin-top: 300px;
}

#page-103 .overlay-text p {
    font-size: 1.5em;
    text-align: center;
    line-height: 0.8; /* Adjust line-height to manage the space between lines */
    color: blue;
}

@media (max-width: 600px) { /* Adjust the breakpoint value as needed */
#page-103 .overlay-text h1 {
    font-size: 1.6em;
    margin-left: -90px;
    margin-top: 250px;
    
}

#page-103 .overlay-text p {
    font-size: 1.4em;
    margin-left: -90px;
    margin-top: 40px;

}

}


#page-101A h1 {
    text-align: center;
    margin-left: 120px;
}

#page-101A  {
    margin-right: 80px;
    margin-bottom: 30px;
    
}

@media (max-width: 600px) { /* Adjust the breakpoint value as needed */
#page-101A h1 {
  
    margin-left: 10px;
}

}


