body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    /*display: flex;*/
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, hsl(185, 73%, 57%), hsl(253, 78%, 52%));
    padding: 3px;
    color: white;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 24px;
}

.menu {
    display: flex;
}

.menu-item {
    padding: 10px 25px;
    color: rgb(240, 237, 235);
    text-decoration: none;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    font-size: 25px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

#slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    color: #2c3e50;
    /* z-index: 20; */
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

footer {
    position: relative;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #020202;
    color: #fff;
    z-index: 1;
}

.content {
    padding: 20px;
    flex: 1;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #4a4747fe;
        top: 90px;
        right: 0;
        width: 100%;
    }

    .menu-item {
        padding: 15px;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .menu.active {
        display: flex;
    }
}
