* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #121212;
      color: #f1f1f1;
      line-height: 1.6;
    }
    header {
      background-color: #1c1c1c;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    nav a {
      color: #f1f1f1;
      text-decoration: none;
      padding: 10px 20px;
      font-size: 16px;
      transition: background-color 0.3s ease;
    }
    nav a:hover {
      background-color: #575757;
      border-radius: 5px;
    }
    .logo {
      font-size: 24px;
      font-weight: 500;
      color: #f1f1f1;
    }
    .gallery-container {
      padding: 50px;
    }
    .gallery-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 36px;
      color: #f1f1f1;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .gallery-item {
      background-color: #1c1c1c;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-item img {
      width: 100%;
      height: 25vw;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    .gallery-item h3 {
      font-size: 18px;
      color: #f1f1f1;
      margin-bottom: 10px;
    }
    .gallery-item p {
      font-size: 14px;
      color: #d1d1d1;
    }
    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    @media (max-width: 768px) {
      .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .gallery-title {
        font-size: 28px;
      }
    }