body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #000000;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    max-width: 1000px;
    margin: auto;
    padding-top: 80px;
  }

  .item {
    display: flex;
    flex-direction: column;
    background-color: #9c9c9c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  }

  .item h2 {
    font-size: 1.5em;
    margin: 20px;
    color: #af463e;
  }

  .content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0 20px 20px 20px;
  }

  .image-container {
    overflow: hidden;
    border-radius: 8px;
  }

  .image-container img {
    width: 300px;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .image-container img:hover {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
  }

  .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .text p {
    margin-bottom: 10px;
  }

  .text a {
    color: #af463e;
    text-decoration: underline;
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
    padding: 5px 9px;
  }

  .text a:hover {
    color: var(--primary-color);
  background: var(--secondary-color);
  }