.portfolio-main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}


.portfolio-card {
    width: 400px;
    height: 280px;
    border-radius: 32px;
    padding: 3px;
    margin-top: 30px;
    position: relative;
    box-shadow: #0e0b0b30 10px 20px 30px 10px;
    transition: all 0.5s ease-in-out;
  }
  
  
  .portfolio-card .bottom {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    background: rgba(255, 255, 255, 0.956);
    top: 75%;
    border-radius: 29px;
    z-index: 2;
    box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px inset;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 395px;
  }
  
  .portfolio-card .bottom .content {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 160px;
  }
  
  .portfolio-card .bottom .content .name {
    
    font-size: 1.2rem;
    color: black;
    font-weight: bold;
  }
  
  .portfolio-card .bottom .content .about-me {
    display: block;
    font-size: 0.9rem;
    color: black;
    margin-top: 1rem;
  }
  
   .portfolio-card .bottom .bottom-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .portfolio-card .bottom .bottom-bottom .social-links-container {
    display: flex;
    gap: 1rem;
  }
  
  
  
  .portfolio-card .bottom .bottom-bottom .social-links-container svg:hover {
    fill: #f55d56;
    transform: scale(1.2);
  }
  
  .portfolio-card .bottom .bottom-bottom .button {
    background: black;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    box-shadow: rgba(165, 132, 130, 0.1333333333) 0px 5px 5px 0px;
  }
  
  .portfolio-card .bottom .bottom-bottom .button:hover {
    background: #f55d56;
    color: white;
  }
  
  
  
  .portfolio-card:hover .bottom {
    top: 18%;
    border-radius: 29px 29px 29px 29px;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
  }


  .portfolio-card:hover .bottom:hover .button {
    margin-right: 260px;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
  }
  
 
  
  
  
  
  