  .graphic-design-gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 6px; /* spacing between images */
    place-items: center;
  }
.design-img{
    width: 85%;
    height: auto;
    border-radius: 15px;
  }
  .copyright-notice{
    font-size: 12px;
  }
  .design-work{
    text-align: center;
    width: 95%;
  }
  .design-video{
    width: 100%;
    height: auto; 
    padding: 0.5%;
    border-radius: 20px;
  }
  p {
    font-size: 16px;
  }
  h1{
    font-size: 30px;
  }
@media (max-width: 1024px) {
    .design-work {
        display: inline;
        max-width: 100%;
         width: 90%;
    }
    .design-img{
      width: 100%;
      border-radius: 10px;
    }
    .graphic-design-gallery{
        grid-template-columns: 1fr;
        width: 100%;
    }
    .design-video{
      padding: 0;
      border-radius: 15px;
    }
    .copyright-notice{
      font-size: 9px;
    }
    h1{
        font-size: 23px;
    }
    p{
        font-size: 12px;
    }
}