#image-wrapper {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 150px;
    cursor: pointer;

    margin-right: 50px;
}



header {
    border-bottom: 2px solid white
}

#image-wrapper img {
    width: 150px;
    margin-left: 20px;
}

@media (max-width: 768px) {
    #image-wrapper img {
        width: 200px;
    }
}

nav {
    display: flex;
    align-items: center;

    height: 80px;
}

@media (max-width: 768px) {
    .link {
        display: none;
    }
}

a.link {

    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 18px 20px;
    background: transparent;
    color: white;

}

a.link::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 50%;
    left: -1%;
    top: 10px;
    background-color: #00874C;


    transform: skewX(30deg);
    z-index: -1;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

}

/*crvena #E00007 */
/* zuto #FFBB3F */

/* zeleno #00874C */


a.link:hover::before {
    /* transform: skewX(0deg); */
    left: 50%;
}


a.link::after {
    content: "";
    position: absolute;
    height: 70%;
    width: 50%;
    left: 49%;
    top: 10px;
    background-color: #FFBB3F;

    transform: skewX(30deg);
    z-index: -1;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

}

a.link:hover::after {

    left: 0%;
}


.buttons button {
    border: white;
    cursor: pointer;
}


.buttons button:hover {
    transform: scale(1.05);
}