body {
    background-color: #020202;
  }

  .custom-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .custom-column {
    flex: 1;
    margin: 10px;
  }

  .custom-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px; /* Small border radius */
    transition: filter 0.3s ease; /* Transition for smooth effect */
  }

  /* Dim effect on hover */
  .custom-img:hover {
    filter: brightness(75%); /* Reduce brightness to 70% on hover */
  }

  @media only screen and (max-width: 600px) {
    .custom-container {
      flex-direction: column;
    }
  }