body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.hamburger-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

#menu-toggle {
    display: none;
}

.menu {
    display: none;
    list-style: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    position: absolute;
    top: 30px;
    left: 0;
    border-radius: 5px;
}

#menu-toggle:checked + .menu-icon + .menu {
    display: block;
}

.menu li {
    padding: 10px 20px;
}

.menu li a {
    color: white;
    text-decoration: none;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.active {
    opacity: 1;
}

.overlay-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
