
/* Portfolio */
.portfolio {
    padding: 3rem 0;
    text-align: center;
    background-color: #fff;
  }
  .portfolio-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .portfolio-item {
    border-radius: 9px;
    box-shadow: 1px 2px 2px grey;
    margin: 1rem;
    width: 350px;
    height: 400px;
    overflow: hidden;
  }
  
  .portfolio-item img {
    min-width: 350px;
    height: 200px;
    cursor: pointer;
  }