body{
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    overflow: auto;
}
* {
    box-sizing: border-box;
}
.menu-page {
    background-color: black;
    position: relative; /* Add this line */
    height: 100vh; /* Add this line */
}

#logo-container {
    position: absolute; /* Add this line */
    top: 1rem; /* Add this line */
    right: 1rem; /* Add this line */
}
#logo {
    padding: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    height: 80px; /* Adjust as needed */
    width: auto; /* Keep the aspect ratio */
    z-index: 2;
}

.slide {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    display: block;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    opacity: 0.3 !important;
}

.slider {
    top: 0;
    left: 0;
    height: 100vh;
    background-size: cover;
    display: flex!important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.slider a {
    position: relative;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    text-transform: normal;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    margin-top: 1.3rem;
    z-index: 1;
}

.slider a:hover {
    color: #3ca79d;
}

.page-top {
    padding: 1rem;
    position: relative;
    height: 30vh;
    display: flex;
    justify-content: left;
    flex-direction: column;
    text-align: left;
    background-color: white;
}
#gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
}

/* CSS for screens that are 600px wide or less */
@media (max-width: 600px) {
    #gallery {
        grid-template-columns: 1fr; /* Only one column */
    }
}

#gallery .container {
    display : flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
#gallery .video-container {
    position: relative;
    cursor: pointer;
    
}

#gallery .video-container img {
width: 100%;
height: 100%;
object-fit: cover;
margin: 0; /* Add this line */
padding: 0; /* Add this line */
}

#gallery .video-container .video-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: multiply;
    color: #fff;
    display: flex; /* Add this line */
    flex-direction: column;
    justify-content: flex-end; /* Add this line */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.video-items {
    padding-left:1rem;
}
.video-items h1 {
    font-size: 1rem;
    margin-bottom: 0;
}
.video-items p {
    font-size: 0.8rem;
    margin-top:3px;
}
#gallery .video-container:hover .video-items {
    opacity: 0;
}

#gallery .video-container .player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#gallery .video-container .player-container iframe {
    width: 100%;
    height: 100%;
}
#lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 1);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#lightbox.show {
opacity: 1;
visibility: visible;
}

#lightbox .close-button {
position: absolute;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
cursor: pointer;
}
#lightbox .background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .3;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

#lightbox .title,
#lightbox .subtitle {
position: absolute;
z-index: 2;
color: white;
top: 10.8vh;
left: 21.9vw;
}

#lightbox .title {
font-size: 18px;
line-height: 9px;
}

#lightbox .subtitle {
margin-top: 1rem;
font-size: 13px;
line-height: 9px;
}

#lightbox .player-container {
position: relative;
width: 70%;
height: 70%;
}

#lightbox .player-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#lightbox .prev-button,
#lightbox .next-button {
position: absolute;
top: 50%;
font-size: 2em;
color: white;
cursor: pointer;
}

#lightbox .prev-button {
left: 40px;
}

#lightbox .next-button {
right: 40px;
}