@media screen and (max-width:768px) {

    .pics {
        grid-template-columns: auto;
        grid-gap: 10px;
    }
    
    .KUD {
        display: inline;
        text-align: center;
        margin-left: 30px;
        font-size: 16px;
    
    } 

    .navigation {
        flex-direction: row;
        height: 83px;
    }
    
    .menu {
        z-index: 1;
        flex-direction: column;
        position: absolute;
        left: 0;
        height: 100%;
        top: 0%;
        width: 80%;
        justify-content: space-around;
        align-items: center;
        background-color: rgb(156, 155, 154);
        transform: translateX(-100%);
        transition: transform 0.5s ease-in;
    }


    .menu-item {
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .menu-item.link {
        border: none;
        border-bottom: 2px solid black;
        height: 100%;
    }
    .menu img{
        display: none;
    }

    .burger {
        margin-left: 1em;
        display: flex;
        flex-direction: column;
    }

    .burger div {
        display: block;
        transition: all 0.3s ease-out;
    }

    .burgerLine {
        width: 10px;
    }

    

    .footer {
        flex-direction: column;
        margin-top: 10px;
    }

    .Copyright {
        margin-top: 10px;
    }

}