body {
      text-align: center;
      padding: 20px;
      background: url("images/images (19).jpg") no-repeat center center fixed;
      background-size: cover;
      font-family: Arial, sans-serif;
    }

    h1 {
      color: #fff;
      text-shadow: 1px 1px 4px #000;
    }

    img {
      cursor: pointer;
      margin: 10px;
      border: 2px solid #333;
      border-radius: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }

    button {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      border: none;
      border-radius: 6px;
      background: #333;
      color: white;
      transition: background 0.2s ease;
    }

    button:hover {
      background: #555;
    }