#pdf-container {
    margin: 20px auto;
    text-align: center;
}
#pdf-viewer {
    width: 100%;
    height: 520px;
    border: none;
}
@media (max-width: 768px) {
    #pdf-viewer {
        height: 400px; 
    }
}
@media (max-width: 480px) {
    #pdf-viewer {
        height: 300px; 
    }
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.image {
    width: 300px;
    height: 200px;
    overflow: hidden;
}
.image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.image img:hover {
    transform: scale(1.1);
}
body {
    font-family: sans-serif;
}
.container {
    align-items: absolute;/* Align items to the top */
    position: center;
    height: 100vh;
}
.sidebar {
    width: 143px; /* Width for larger screens */
    background-color: #fff; /* White background color for the sidebar */
    color: #333;
    padding: 22px;
    position: fixed; /* Fix the sidebar position */
    top: 0; /* Position from the top */
    left: 0; /* Position from the left */
    bottom: 0; /* Stretch the sidebar to the bottom of the page */
    z-index: 1; /* Ensure the sidebar is above other content */ 
}
.sidebar h2 {
    font-size: 20px;
}
.sidebar ul {
    list-style-type: none;
    padding: 0;
}
.sidebar ul li {
    margin-bottom: 10px;
}
.sidebar a {
    font-size: 25px ;
    text-decoration: none;
    color: #000;
}
.content {
    margin-left: 30px; /* Adjust this value to match the width of the sidebar */
    padding: 2px;
    transition:margin-left: 0.3s; 
}
.sidebar.closer { 
    width:200px;
}
content.closer {
    margin-left:20px;
}
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    z-index: 999;
}
#lightbox img {
    max-width: 80%;
    max-height: 80vh;
    margin: 0 auto;
    margin-top: 10vh;
}
close
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #f10707;
}
.next-button,
.prev-button {
    background-color: #f3f3f3;
    color: #000000;
    padding: 7px 7px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 24;
    right: 11;
    display: block; /* Change to block to align below the image */
    width: 10%; /* Width to take the full width of the image container */
    text-align: center; /* Center-align the buttons horizontally */
}
.next-button {
    right: 400px; /* Position the "next" button to the right */
}
.prev-button {
    left: 400px; /* Position the "previous" button to the left */
}
.next-button:hover, .prev-button:hover {
    background-color: #add8e6; /* Background color on hover */
}
.next-button:hover, .prev-button:hover {
    background-color: #add8e6; /* Background color on hover */
}

.next-button:hover, .prev-button:hover {
    background-color: #add8e6; /* Background color on hover */
}
.gallery-frame {
    width: 100%; /* Adjust the width as needed */
    max-width: 2500px; /* Limit the maximum width of the frame */
    margin: 0 auto; /* Center the frame horizontally */
    padding: 4px; /* Add padding for a frame-like appearance */
    box-sizing: border-box; /* Include padding in width calculations */
    float: left
}
.gallery {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Responsive grid */
    gap: 10px;
    justify-content: center;
}
.gallery-item{
    flex; 1 0 calc(33.33% - 20px); /
	max-width: calc(33.33% - 30px); /* Adjust the width as needed */
    max-height: 450px; /* Adjust the height as needed */
    overflow: hidden;
    object-fit: contain;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
} 
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.1);
}
.story-container {
    text-align: auto;
    margin: 0 auto;
    padding: 20px;
    max-width: fit-content;
    max-height: 600px;
    box-sizing: content-box;  
}
.video-container { 
    text-align: center;
    margin-top: -120px;
    margin-left: auto;
    border: 180px solid #fff;
    box-sizing: content-box;
    max-width: 3000px;
}
video {
    max-width: 100%;
}
h1 {
    text-align: center; /* Center the heading */
    font-size: 18px; /* Adjust the font size as needed */
    margin-bottom: 20px; /* Add margin to separate the heading from the gallery */
}
h3 {
    text-align:center; 
    font-size: 10px; 
}
speakerdeck-iframe{
    width: 600px;
    height: 500px;
    text-align: center;
    margin-left: 218px;
}
/* Style for small images */
img.small {
    max-width: 100px;
    max-height: 100px;
}
/* Style for large images */
img.large {
    max-width: 700px;
    max-height: 700px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}
.enlarged-image {
    max-width: 90%;
    max-height: 90%;
}
.item-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    opacity: 0;
    transition: opacity 0.2s;
}
.item-caption h1 {
    color: rgb(255, 255, 255); 
    font-size: 20px; 
    text-align: center;
    padding: 10px;
}
.social-links {
    text-align: center;
    margin-top: 20px;
}
.social-link {
    text-decoration: none;
    color: #333; /* Link color */
    font-size: 20px;
    margin: 10px;
    display: inline-block;
}
.emoji {
    font-size: 24px;
    margin-right: 10px;
}
.social-link img {
    width: 30px; 
    height: 30px; 
}
.video-container {
   text-align: center;
   margin-top:-170px;
   margin-left:60px;
   border: 190px sold #fff;
   box-sizing:content-box;    
}
#floatingGif {
    position: fixed;  
    top: 1px;       
    left: 140px;
    width: 100px;
    height: auto;
    z-index: 9999;
}
#floatingGif2 {
    position: fixed;  
    top: 460px;       
    left: 40px;
    width: 100px;
    height: auto;
    z-index: 9999;
}
.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
    border: 1px solid ###fff;
    border-radius: 10px;
}
.sidebar li:hover .submenu {
    display: block;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.header-navigation .submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 1px 0px rgba(, 0, 0, 0.00);
    z-index: 5;
    border: 10px solid #fff;
    border-radius: 10px;
}
   .header-navigation li:hover .submenu {
    display: flex;
}
