body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    height: 100%;
    overflow-x: hidden;
}

header {
    background-color: #000000;
    color: #fff;
    padding: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    display: block;
}

nav ul li ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

nav ul li ul.dropdown.show {
    display: block;
}

nav ul li ul.dropdown li {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #fff;
}

nav ul li ul.dropdown li a {
    color: #fff;
    text-decoration: none;
}

nav ul li ul.dropdown li:last-child {
    border-bottom: none;
}

.video-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    display: flex;
    transform: translate(-50%, -50%);
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 115px; 
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px; 
}

.overlay img {
    max-width: 700px; 
    max-height: 700px;
    width: 100%; 
    height: auto;
    margin: 1%;
}

@media (max-width: 600px) {
    .overlay {
        flex-direction: column;
    }
    .overlay img {
        width: 63%; 
        margin: 1% 0;
    }
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.social-links a {
    margin: 0 10px;
    font-size: 25px; 
    color: #FFFFFF; 
}

.menu-icon {
    font-size: 25px; /* Set menu icon size to 25px */
    color: #FFFFFF; /* Set menu icon color to white */
}
