    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    @font-face {
      font-family: "Prociono";
      src: url("Prociono-Regular-webfont.woff");
    }
    body {
      background: #f5f5f5;*/
    /*  background-color: #f7f7f7;*/
    /*  background-image: url("pix/patterns/45-degree-fabric-light.png");*/
    /*  background-image: url("pix/patterns/absurdity.png");*/
      color: #333;
      line-height: 1.6;
    }

    a {
      color:#33a;
      text-decoration: none;
      border:1px solid #f5f5f5; border-radius:3px; padding:1px 3px;
    }
    a:hover {
      color:#66f;
      border:1px solid #777; border-radius:3px; padding:1px 3px;
    }

    header {
      text-align: center;
      padding: 4rem 1rem 2rem;
    }
    header h1 {
      font-size: 2.5rem; font-family: 'Roboto Slab', 'Prociono', serif;
    }
    header p {
      font-size: 1.2rem;
      color: #777;
    }

    h2 {
      font-family: 'Roboto Slab', 'Prociono', serif;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .gallery-item {
      background: white;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .gallery-item:hover {
      transform: scale(1.05);
    }
    .gallery-item img {
      max-height:200px;
      border-radius: 5px;
    }

    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .popup-image {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .about, .contact {
      max-width: 900px;
      margin: 2rem auto;
      padding: 1rem;
    }

    footer {
      text-align: center;
      padding: 2rem;
      color: #888;
      font-size: 0.9rem;
    }

    footer i {
      color: #aaa;
    }