body{
    margin: 0;
    
    background-image: url('/images/background.svg');
    background-position: top right;
    background-repeat: repeat-y;
    background-size: 130%;
    background-color: #1F1F1F;
}


.mainContainer{
    display: flex;
    flex-direction: column;
}

.filterContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.searchBox{
    display: flex;
    flex-direction: row;
    height: 35px;
    margin: 10px;
}

.searchBox img{
    height: 100%;
    width: 35px;
    object-fit: scale-down;
    cursor: pointer;
    background-color: transparent;
}

.searchBox input{
    margin-left: 10px;
    background-color: transparent;
    border: 0;
    border-bottom:#A03FD9 2px solid;
    color:#A03FD9 ;
}

.searchBox input::placeholder {
    opacity: 0.5;
    color: #A03FD9;
}

.filterSelect{
    margin: 10px;
    background-color: transparent;
    padding-left: 5px;
    padding-right: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    border:#A03FD9 2px solid;
    color:#A03FD9;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/images/chevron.svg") ;
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 50%;
}

.filterSelect::-ms-expand {
    display: none;
}

.containerSkills{
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 8px;
}

.borderSkill{
    background: /*#A03FD9*/ 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 17px;
    background-color: #A03FD9;
    margin: 6px;
    height: 20px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 2px;
    padding-bottom: 4px;
    opacity: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.borderSkill p{
    text-align: center;
    font: normal normal normal 14px Segoe UI;
    font-size: 12px;
    letter-spacing: 0.7px;
    color: #FFFFFF;
    margin: 0;
    opacity: 1;
    font-weight: lighter;
}

.borderSkill .remove{
    font-size:  15px;
    font-weight: 900;
    color: #1F1F1F;
    padding: 0;
    margin: 0;
    margin-left: 3px;
}

.projectsContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.projectItem{
    width: 264px;
    height: 343px;
    border-radius: 15px;
    background-color: #2E2E2E;
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('/images/icon/web-development.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    box-shadow: 0px 6px 15px #00000041;
    text-decoration: none;
}

.projectItemSkillsHeader{
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.projectItemContent{
    border-radius: 15px;
    width: 100%;
    height: 70px;
    background: #2e2e2e9e 0% 0% no-repeat padding-box;
    opacity: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.projectTitle{
    align-self: center;
    text-align: center;
    background: transparent linear-gradient(279deg, #FF3DBB 0%, #4BFAF7 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    font-size: 25px;
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: DejaVu Sans;
    font-weight: normal;
    margin: 0;
    margin-top: 20px;
    text-shadow: 0px 5px 15px #b347d483;
}

@media screen and (min-width: 950px){
    .filterContainer{
        margin-left: 2em;
        margin-right: 2em;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .projectsContainer{
        margin: 2em;
    }

    body{
        background-size: 60%;
    }
}