#content-scroller{
    top: 352px
}

#menu-bar{
    box-shadow: none;
}

#projects{
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin-top: 50px;
    border: 2px solid black;
    box-sizing: border-box;
}

.project-item{
    min-width: 100%;
    height: 100%;
    /* opacity: 0.8;
    filter: grayscale(80%); */

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    cursor: pointer;
}

.project-item:hover{
    opacity: 0.8;
}

.project-title-text{
    position: absolute;
    font-size: 6vh;
    color:white;
    font-family: "Permanent Marker", cursive;
    user-select: none;
    white-space: nowrap;

    background-color: rgba(10, 10, 10, 0.3);
    border-radius: 25px;
    box-shadow: 0px 0px 80px 80px rgba(10, 10, 10, 0.3);
}
.project-title-image{
    position: absolute;    
    height: 100%;
}
.project-item-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#filter-menu{
    position: absolute;
    height: 100%;
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filter-item{
    width: 50px;
    height: 50px;
    margin: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f0f0f0;
    opacity: 0.5;
    border-radius: 50%;

    font-size: 32px;
    color: #0a0a0a;
    cursor: pointer;
    user-select: none;
}

#project-provence img{
    max-width: 80%;
    height: auto;
}

@media (hover: hover) {

    .filter-item:hover{
        opacity: 1;
    }

    #filter-code:hover{
        color: #f783ac;
    }

    #filter-art:hover{
        color: #fd7e14
    }

    #filter-game:hover{
        color: #82c91e
    }

    #filter-article:hover{
        color: #15aabf
    }

}

.filter-item.selected{
    opacity: 1;
}

#filter-code.selected{
    color: #f783ac;
}

#filter-art.selected{
    color: #fd7e14
}

#filter-game.selected{
    color: #82c91e
}

#filter-article.selected{
    color: #15aabf
}

.filter-hide{
    display: none;
}

#entry-indicator{
    position: absolute;
    height: 100%;
    width: 25px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.entry-node{
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.25;
    margin: 5px;
}

.entry-node.selected{
    opacity: 1;
}



@media(max-width:720px){

    #content-scroller{
        top: 202px
    }

    #projects{
        height: 150px;
    }

    .project-title-text{
        font-size: 7vw;
    }

    #filter-menu{
        width: 100%;
        height: 75px;        
        flex-direction: row;
        bottom:0px;
    }

    .project-item{
        opacity: 1;
        filter: grayscale(0%);
    }
    
}