@font-face {
    font-family: Lexend;
    src: url(../font/Lexend-VariableFont_wght.ttf);
}

body {
    font-family: Lexend, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

#navigation ul {
    margin: 0;
}

.menu-toggle {
    display: none;
    background-color: #007f96;
    color: white;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}

#debba {
    width: 100%;
    height: auto;
    display: block;
}

#back_home {
    background-color: rgba(58, 58, 58, 0.8);
    color: white;
    font-size: medium;
    text-align: center;
    width: 4vh;
    height: 4vh;
    padding: 15px;
    border-radius: 0 0 0 3vh;
    position: fixed;
    top: 0;
    right: 0;
}



#navigation {
    background-color: #005f70;
}

#navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

#navigation li {
    margin: 8px;
}

#navigation a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

#navigation a:hover {
    background-color: #f0f0f0;
    color: #005f70;
}

#navigation li#activelink a {
    background-color: #ffffff;
    color: #603;
    border-bottom: 3px solid #fff;
}

#colcx {
    padding: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery img.wide {
    width: 300px;
    height: 200px;
}

.gallery img.tall {
    width: 150px;
    height: 200px;
}

.gallery img:hover {
    transform: scale(1.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

#copyright {
    background-color: rgba(58, 58, 58, 0.8);
    color: white;
    font-size: small;
    text-align: center;
    width: fit-content;
    height: fit-content;
    padding: 15px;
    border-radius: 0 3vh 0 0;

    position: fixed;
    bottom: 0;
    left: 0;
}


@media screen and (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    #navigation ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    #navigation ul.show {
        display: flex;
    }

    body {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 431px) {

    .menu-toggle {
        display: block;
    }

    #navigation ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    #navigation ul.show {
        display: flex;
    }

    body {
        font-size: 1.2rem;
    }
}