
.portfolio{
    padding: 2rem 3rem;
    box-shadow: 0 0 40px 10px #f3f3f30c;
    max-width: 1280px;
    margin: auto;
}

.title--port{
    text-align: center;
    font-size: 2.65rem;
    margin-top: 4rem;
    font-weight: 600;

    & span {
        color: #00FF08;
    }
}


.img-port{
    width: 360px;
    height: 400px;
    margin-top:3rem;
    background-size: cover;
    background-position: 100% 0%;
    transition:5s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;

    


}

.img-port:hover{
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.705);
    width: 100%;
    height: 100%;
    border-radius: 40px;
    display: flex;
    align-items: center;justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: .5s;


}

.overlay:hover{
    opacity: 1;
}