@import "./style.css";

.portfolio-item {
    width: 90%;
    height: 175px;
    padding: 12.5px 5%;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid lightgrey;
    text-align: center;
}
.portfolio-item:hover {
    background-color: lightgrey;
    box-sizing: 2px 2px 20px lightgrey;
    cursor: pointer;
}
@media screen and (min-width: 568px) and (max-width: 853px) and (max-height: 393px) {
    .portfolio-item {
        height: 150px;
        align-items:  flex-start;
        text-align: center !important;
    }
}

@media screen and (min-width: 1100px) {
    .portfolio-item {
        width: 90%;
        height: 175px;
        padding: 12.5px 5%;
        justify-content: flex-start;
        text-align: left;
    }
}