/*navbar*/

nav{
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a>img{
    width: 117.4px;
    height: 84.2px;
}

.nav-container{
    height: 100px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    max-width: 1500px;
    width: 100%;
    margin: 0px 40px 0px 40px;
}

/*button*/
.filterButton {
    appearance: none;
    background-color: transparent;
    border: 2px solid #ffff00;
    border-radius: 15px;
    box-sizing: border-box;
    color: yellow;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 60px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    will-change: transform;
}

.filterButton:disabled {
    pointer-events: none;
}

.filterButton:hover {
    color: yellow;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.filterButton:active {
    box-shadow: none;
    transform: translateY(0);
}


/*queries*/
@media screen and (min-width: 600px) and (max-width: 1600px){
    a>img{
        margin-left: 50px;
    }
    ul{
        margin-right: 50px;
    }
}


@media screen and (min-width: 200px) and (max-width: 600px){

    a>img{
        margin-left: 10px;
    }
    .menu{
        width: 100px;
        margin-right: 30px;
    }
    .filterButton{
        padding: 16px 16px;
    }
    .nav-container{
        margin: 0px;
    }
}