       a  { color:antiquewhite;
        text-decoration: none;
        text-decoration-line: none;
        }
   
    a:hover { color:#FF6600; }
    a:active { color:#FF9900; }

        body {
            margin: 0;
            padding: 0;
            font-family: "Amaranth", Arial, sans-serif;
            color: #707070;
            background-color: #f9f9f9;
        }



        header {
            background-image: url("https://mlpvu7wgwflk.i.optimole.com/co-ZpyQ-NqMbv3Tv/cb:mPubA3Vj.lqmFRhMC/w:auto/id:8827185c38c3e6647292bfb10f818d61/directUpload/open-book.webp"); /* Replace with your header image URL https://mlpvu7wgwflk.i.optimole.com/co-ZpyQ-yS_aE5w0/cb:mwUIAz5H.lATA14UT/w:auto/id:3fad11c39065e13ee456a040215e4019/directUpload/header-5.webp */
            background-size: Xpx 250px; /* Replace X with the actual width */
            background-size: cover;
            background-position: center;
            height: 250px;
           color: antiquewhite;
             font-family: 'Amaranth', Arial, sans-serif;
            
        }

img {
    max-width: 100%;
    height: auto;
}
        nav {
        background-color: #212529;
        color: #fff;
        text-align: center;
        height: 30x;
        padding: 10px;
            z-index: 1000;
      position: relative;
        
           
        }

/* Base styling for the menu */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
/*background-color: #333;*/
        display: flex;
    justify-content: space-around;
    align-items: center;
}

nav li {
  display: inline-block;
  position: relative;
}

nav a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
}

/* Styling for the dropdown submenu */
.dropdown:hover .submenu {
  display: block;
    width: 200px;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
}

.submenu li {
  display: block;
}

.submenu a {
  padding: 10px 20px;
    display: block;
}

/* Styling for the top-level menu items */
nav li:hover > a {
  background-color: #555;
}

/* Style for the submenu items on hover */
.submenu li:hover a {
  background-color: #555;
}


        .container {
            
            margin: 0 auto;
            padding: 20px;
        }

        .main-content {
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-content: center;
        }

        .column {
            display: flex;
           
            flex: 1;
            margin: 5px;
            padding: 10px;
            background-color: ;
            flex-direction: column;
            
            justify-content: center; /* Center content horizontally */
            align-items: center; /* Center content vertically */

        }

        .footer {
            background-color:#212529;
            color: #fff;
            text-align: center;
            padding: 10px;
            justify-content: space-evenly;
            display: flex;
        }
        
        .section {
            margin: auto;
            width: 90%;
                display:flex;
            justify-content: space-evenly;
            align-content: center;
            vertical-align: middle;
        }
        .a {
            color: antiquewhite;
        }
        .h1 {
            color: antiquewhite;
             margin: 20px;
            font-size:  36px;
            font-family: 'Amaranth', Arial, sans-serif;

        }
        
        .h2 {
             color: saddlebrown;
             margin: 20px;
            font-size:  36px;
            font-family: 'Amaranth', Arial, sans-serif;

        }
.column-pic {
   
            display: flex;
           
            flex: 1;
            margin: 10px;
            padding: 20px;
            background-color: ;
            flex-direction: column;
   
            justify-content: center; /* Center content horizontally */
            align-items: center; /* Center content vertically */

        
}




/* Use a media query for narrow screens (adjust max-width as needed) */
@media (max-width: 848px) {
    .section {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center columns horizontally on narrow screens */
    }
    .column, .column-pic {
        width: 100%; /* Make columns full width on narrow screens */
    }
    
    .column-pic.reverse {
        order: -1;
    }
}

h3 {
    color: orange;
}
/* Base styling for the button */
.my-button {
  background-color: orange;
  color: whitesmoke;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
    margin: 5px;
}

/* Styling for the button on hover */
.my-button:hover {
  background-color: #212529;
  color: antiquewhite;
}

.section-image {
       
            margin: auto;
            width: 90%;
                display:flex;
            justify-content: space-evenly;
            align-content: center;
            vertical-align: middle;
    padding-top: 10px;
     
}

.text-link {
    color: orange;
}

.text-link:hover {
    color: #212529;
    text-decoration: underline;
      cursor: pointer; /* Change the cursor to a pointer on hover */
}

h4 {
    color: orange;
}

#aus-slider {
   
    height: 350px;
    width: 90%;
}

h1 {
    padding-top: 40px;
    margin-top: -20px;
    padding-left: 10px;
    text-shadow: 1px 1px 0 #888, 2px 2px 0 #888;
}

.subtitle {
    padding-left: 10px;
    color: antiquewhite;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Add this CSS to your stylesheet */
#sticky-menu {
    position: relative;

    width: 100%;
     /* Adjust the background color as needed */
    z-index: 1000; /* Ensure the nav is above other content */
}

/* Rest of your navigation styles remain the same as in the previous answer */

#sticky-menu.sticky {
    position: fixed;
    top: 0;
}
#sticky-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30px; /* Adjust the height as needed */
}

#sticky-nav li {
    position: relative;
}

#sticky-nav a {
    text-decoration: none;
    color: #fff; /* Adjust the text color as needed */
    padding: 10px 20px;
    display: block;
}

#sticky-nav .dropdown:hover .submenu {
    display: block;
}

#sticky-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    z-index: 1000;
}

#sticky-nav .submenu li {
    display: block;
}

/* Add any other styles or adjustments you need */
/* Rest of your styles remain the same */

#sticky-nav .dropdown:hover .submenu {
  display: block;
  position: absolute; /* Add this line to ensure proper dropdown position */
}


#hamburger-icon {
  display: none;
  font-size: 24px; /* Adjust the size as needed */
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  #hamburger-icon {
    display: block;
  }
  
  #full-menu {
    display: none;
    /* Add any other styles you need for the mobile menu */
  }
}


/*adjust styles for hamburger menu on mobile*/
@media only screen and (max-width: 768px) {
  nav ul {
    display: block;
    position: absolute;
   
    left: 0;
    width: 100%;
    background-color: #333; /* Adjust the background color as needed */
    z-index: 1000;
  }

 /* nav ul li {
    display: block;
    text-align: center;
  }

  nav ul a {
    display: block;
    padding: 10px 0;
  }

  nav ul.submenu {
    width: 100%; /* Adjust the width as needed */
    top: 0;
  }*/
}


/*end mobile styles*/

.search-box {
    border-radius: 25px;
    height: 30px;
    padding: 10px;
}

.sidebar-left {
    flex: 0.15;
    padding: 10px;
    background-color: #f2f2f2;
      display: flex;
    flex-direction: column;
    align-items: center;
    width:15%;
}

.sidebar-right {
    flex: 0.15;
    padding: 10px;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
     width:15%;
}

/* Media query for tablet screens (adjust the max-width as needed) */
@media (max-width: 768px) {
    .sidebar-right {
        display: block;
        flex: 1;
        width:100%
        /* Other styles for the right sidebar content in the left sidebar */
    }
}

.sidebar-right.resized {
        display: block;
        flex: 1;
        width:100%
        /* Other styles for the right sidebar content in the left sidebar */
    }

.content {
      flex: 1;
    max-width: 1200px;
    width: 70%;
}

.image-button {
    margin: 5px;
      transition: transform 0.3s, width 0.3s;
}

.image-button:hover {
    margin: 5px;
     transform: scale(1.75);
         width:175%;
    margin-right: 10px;
    z-index: 2;
    transform: translateX(-50px);
}

.image-button-left {
    margin: 5px;
     transition: transform 0.3s, width 0.3s; /* Add transition for transform and width */

}

.image-button-center {
    margin: 5px;
     transition: transform 0.5s, width 0.5s; /* Add transition for transform and width */

}

.image-button-left:hover {
    margin: 5px;
     transform: scale(1.75);
        width:175%;
    margin-left: 10px;
    z-index: 2;
    transform: translateX(50px);
   
}

.image-button-center:hover {
    margin: 5px;
     transform: scale(1.5);
        width:150%;
    margin-left: 10px;
    z-index: 2;
    transform: translateX(-50px);
    transform: translateY(-120px);
   
}
/*top 10 books slider*/
 /*  .swiper {
      width: 100%;
      height: 500px;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
        height: 500px;
    }



    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
                    
                    .book-swiper-container {
                        height: 500px;
                        width: 90%;
                        position: relative;
                        padding: 15px;
                    }
                    
                    @media (max-width: 1268px) {
    .book-swiper-container {
                        height: 650px;
}
                        
                        .swiper {
      width: 100%;
      height: 650px;
    }
                         .swiper-slide img {
      display: block;
     
      object-fit: contain;
    }
                        .swiper-slide {
                             height: 650px;
                        }
                         
                    }
                   
                    
                     @media (max-width: 1168px) {
    .book-swiper-container {
                        height: 600px;
}
                        
                        .swiper {
      width: 100%;
      height: 600px;
    }
                         .swiper-slide img {
      display: block;
     
      object-fit: contain;
    }
                        .swiper-slide {
                             height: 600px;
                        }
                         
                    }
                    
                     @media (max-width: 1068px) {
    .book-swiper-container {
                        height: 670px;
}
                        
                        .swiper {
      width: 100%;
      height: 670px;
    }
                         .swiper-slide img {
      display: block;
     
      object-fit: contain;
    }
                        .swiper-slide {
                             height: 670px;
                        }
                         
                    }
                     @media (max-width: 968px) {
    .book-swiper-container {
                        height: 750px;
}
                        
                        .swiper {
      width: 100%;
      height: 750px;
    }
                         .swiper-slide img {
      display: block;
      width: 120px;
      height: 170px;
      object-fit: contain;
    }
                        .swiper-slide {
                             height: 750px;
                        }
                        
                        .column-pic {
                            padding: 5px;
                        }
                         .column {
                            padding: 5px;
                             order: -1;
                        }
                        
                    }
/*end top 10*/*/

.historical {
    height: 950px;
}

  .search-box {
            padding-right: 30px; /* Adjust the padding to accommodate the icon */
            border-radius: 15px;
            height: 30px;
        }

        .search-icon {
            position: absolute;
            top: 50%;
            right: 10px; /* Adjust the right position as needed */
            transform: translateY(-50%);
            width: 20px; /* Adjust the width of the icon */
            height: auto; /* Maintain the aspect ratio */
            left: 175px;
        }
.search-device-icon {
            position: absolute;
            top: 50%;
           
            transform: translateY(-50%);
            width: 20px; /* Adjust the width of the icon */
            height: auto; /* Maintain the aspect ratio */
            left: 160px;
        }


.image-before-buttons {
    padding-bottom: 20px;
}

.romance {
 /*   height: 650px;*/
}

.kids-signup.img {
    width: 90%;
}

.buttons-row {
    flex-direction: row;
}

h2 {
    color: orange;
}

.disclaimer {
    font-size: smaller;
}

hr {
    color: orange;
    
}

.quiz-slide {
    padding: 10px;
    display: flex;
    align-content: center;
    vertical-align: middle;
}

.quiz {
    width: 450px;
    height: 120px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 50px;
    padding-bottom: 20px;
    background-position: center;
    background-size: contain;
}

.quizmini {
    width: 250px;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-position: center;
    background-size: contain;
}

.quiz1 {
  
    height: 120px;
    border-radius: 25px;
  /*  background-color:bisque;*/
    border-color: orange;
    border-width: thick;
}

.quiz1:hover {
    background-color:bisque;
}

.choice-container {
    align-content: center;
}

.quiz2 {
     
    height: 120px;
    border-radius: 25px;
    
    padding-bottom: 40px;
}

.quiz3 {
   
     width:15px;
    height: 15px;
}

.quiz4 {
    width: 65px;
   
    border-radius: 5px;
}

.quiz5 {
    width: 150px;
}

.quiz6 {
    width: 200px;
}

.select-option {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flipped-image {
   
    transform: scaleX(-1);

}

.confetti {
    margin-top: -50px;
    position: absolute;
   
}



/* Keyframes for the animation */
  @keyframes floatBalloons {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-500px);
      opacity: 0;
    }
  }

  /* Apply the animation to the balloons class */
  .balloons {
       margin-top: -230px;
  /*  animation: floatBalloons 5s ease-in-out;*/
  }

.blueback {
    background-color: cornflowerblue;
}

.dkblueback {
    background-color: darkblue;
}

.plblueback {
    background-color:paleturquoise;
}

label {
    padding-left: 10px;
    padding-right: 10px;
}

.radio {
    justify-content: center;
}

.quiz7 {
     border-radius: 25px;
    height: 160px;
    padding-bottom: 40px;
}

@media (max-width: 868px) {
    .results-slide {
    padding-top: 150px;
    }
        .results--device-slide {
    padding-top: 100px;
}
}

@media (max-width: 868px) {
    .results-image {
    padding-top: 60px;
}
}


 .quizbox {
    /*  display: flex;*/
      align-items: center;
      justify-content: center;
      font-size: 12px;
      
      color: #fff;
       /* padding: 10px;*/
        background-image: url(https://mlpvu7wgwflk.i.optimole.com/co-ZpyQ-IKeiqaQj/cb:mQ1zpxWy.lJQWtR1J/w:auto/id:04af5c889a2a03b870436c254ae6fbd6/directUpload/icons-for-quiz-84.webp);
        background-position: center;
        background-size: cover;
        
        border-radius: 25px;
      
       
    }