@import url("styles.css");
/* ===== WORK =====*/
.work__container {
    row-gap: 2rem;
  }
  .work__img {
    width: 250px; /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    overflow: hidden; /* Hides excess parts */
    border-radius: 0.5rem;
    box-shadow: 0px 4px 25px rgba(14, 36, 49, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .work__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
  }
  .work__img img:hover {
    transform: scale(3.2);
  }