.scrollingProjectsContainer{
    background-color: rgba(0, 0, 0, 0);
    height: 400px;
    width: 100%;
    margin-top: 40px;
    padding: 0px;
    user-select: none;
    -webkit-user-select: none;

}
.scrollingProject{
    position: relative;
    background-color: rgba(0, 0, 0, 0.391);
    border-radius: 8px;
    width: 50%;
    margin-left: 25%;
    height: calc(100% - 40px);
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
    user-select: none;
    -webkit-user-select: none;
    background-position: center;
    /* background-size: contain; */
    background-size: 100%;
    overflow: hidden;

    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.2);
    transition: 0.5s;

    cursor: pointer;
}
.scrollingProject h2{
        margin: 0px;
        position: absolute;
        bottom: 20px;
        left: 20px;
        user-select: none;
        -webkit-user-select: none;

}
.noPointer{
    cursor: default;
}
.scrollingProject:hover{
    /* transform: scale(120%); */
    background-size: 125%;
}
@keyframes showSidebar {
  from {margin-left: 100%;}
  to {margin-left: calc(50% - 40px);}
}
.sidebarText{
    background-color: rgba(158, 158, 158, 0.172);
    color: rgb(193, 193, 193);
    height: 100%;
    width: 50%;
    padding: 20px;
    animation: showSidebar 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    backdrop-filter: blur(10px);
}


#ochota{
    background-image: url(../projects/ochotaThumb.png);
}
#forum{
    background-image: url(../projects/forum.png);
    /* filter: brightness(50%); */
}