body {
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #000;
    touch-action: pan-y pinch-zoom;
    font-family: "Ubuntu", sans-serif;
    font-style: normal;
}


.lang-menu {
    text-align: right;
    position: relative;
    border-radius: 5px;
    /* bottom: 5px; */
}

.logo-link {
    display: block;
}

#unique-logo {
    height: 50px;
    width: auto;
    vertical-align: middle;

    opacity: unset;
    position: unset;
    top: unset;
    left: unset;
}

#unique-logo-mobile {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-bottom: 20px;

    opacity: unset;
    position: unset;
    top: unset;
    left: unset;
}

.name {
    position: absolute;
    top: 20px;
    color: white;
    font-size: 1.5em;
    z-index: 3;
    display: block;
}

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

.name-in-menu {
    color: white;
    display: none;
    text-align: center;
}

nav {
    position: absolute;
    top: 70px;
    z-index: 3;
    margin-top: 5px;
}

.menu-icon {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.menu-icon.active i::before {
    content: "\f00d";
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.nav-links.active .name-in-menu {
    display: block;
    margin-bottom: 40px;
}

.nav-links.active li {
    margin: 20px 0;
    width: auto;
    text-align: center;
}

.nav-links.active a {
    font-size: 1.5em;
    display: block;
    padding: 10px;
    border-bottom: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ccc;
}

#image-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s linear;
}

img.active {
    opacity: 1;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 2em;
    cursor: pointer;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;

}

#prev-btn {
    left: 20px;
}

#next-btn {
    right: 20px;
}

#footer {
    display: none;
}

#head {
    display: none;
}


@media (max-width: 768px) {
    .name {
        /* display: none; */
        position: absolute;
        color: black;
        text-decoration-line: blink;
    }

    nav {
        position: static;
        top: 60px;
        z-index: 3;

    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-button {
        padding: 10px;
        font-size: 1.5em;
    }

    #prev-btn {
        left: 10px;
    }

    #next-btn {
        right: 10px;
    }

    #image-container {
        margin-top: 200px;
        margin-bottom: 250px;
    }

    #image-container::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: var(--background-image);
        background-position: center;
        filter: blur(5px);
        z-index: -1;
        transition: background-image 1s linear;
    }

    #footer {
        top: 78vh;
        background-color: black;
        width: 100vw;
        height: 50vh;
        text-align: center;
        display: flex;
        z-index: 2;
        position: fixed;
        text-align: center;
        justify-content: center;
        align-self: center;
        color: rgb(255, 255, 255);
    }

    #footer-content {
        position: absolute;
        padding-top: 40px;
    }

    #footer p {
        font-size: 0.7rem;
        margin: 0;
    }

    #head {
        background-color: black;
        width: 100vw;
        height: 84px;
        text-align: center;
        display: flex;
        color: blanchedalmond;
        z-index: 1;
        position: fixed;
        top: 0px;
    }

    .social-icons {
        font-size: 1em;
        position: absolute;
        margin: 15px 10px 10px 10px;
    }

    .social-icons a {
        color: white;
        font-size: 1em;
        margin: 15px 10px 10px 10px;
        z-index: 6;
        position: relative;
    }

    .social-icons a:hover {
        color: gray;
    }

    .lang-menu {
        text-align: center;
        position: relative;
        margin-left: 0;
        bottom: 0;
        font-size: .9em;
    }

}