
.portfolio {
    display: flex;
    flex-direction: column;
  }
  
  .works-cards {
    /* border: 1px solid red; */
    margin: 100px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
  }
  
  #no-works-title {
    font-size: 30px;
    color: var(--white-color);
    display: none;
  }
  
  .works-cards iframe {
    width: 450px;
    height: 350px;
    box-sizing: border-box;
    /* border: 3px solid red; */
    background: linear-gradient(180deg, var(--fourth-color), var(--first-color));
    padding: 3px;
    border-radius: 8px;
    transition: all 0.5s;
    
  }
  
  .works-cards iframe:hover {
    cursor: pointer;
    scale: 110%;
    box-shadow: 0px 5px 50px var(--fivth-color-shadow);
    transition: all 0.5s;
  }
  
  .view-more {
    width: 250px;
    height: 50px;
    display: flex;
    justify-self: center;
    align-self: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(#200812, #1d0820) padding-box,
      linear-gradient(60deg, var(--first-color), var(--second-color)) border-box;
    color: var(--white-color);
    border: 3px solid transparent;
    border-radius: 40px;
    transition: all 0.8s;
  }
  
  .view-more:hover {
    background: linear-gradient(rgba(32, 8, 18, 0), rgba(29, 8, 32, 0)) padding-box,
      linear-gradient(60deg, var(--first-color), var(--second-color)) border-box;
    color: #082012;
    box-shadow: 0px 0 100px var(--first-color);
    scale: 110%;
    transition: all 0.8s;
  }
  
  .view-more:hover img {
    filter: invert(90%);
    /* transition: all 0.3s; */
  }
  
  .view-more img {
    width: 40px;
  }

  /* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {
 

}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {

}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {
    .portfolio {
        padding-bottom: 30px;
      }
    
      .works-cards {
        margin: 40px 40px 100px 40px;
        row-gap: 50px;
      }
    
      .works-cards iframe {
        width: 375px;
        height: 300px;
      }
    
      .view-more {
        width: 200px;
        height: 40px;
        border-radius: 15px;
        font-size: 17px;
      }
    
      .view-more img {
        width: 35px;
      }
}


