/* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", Arial, sans-serif;
      color: #fff;
      background-color: #111;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
      overflow-x: hidden;
    }

    header {
      padding: 10px;
      text-align: center;
      background: rgba(0, 0, 0, 0.6);
      position: relative;
      z-index: 2;
    }

    header h1 {
      font-size: 3rem;
      letter-spacing: 1.5px;
      color: #fff;
      font-weight: 600;
    }

    main {
      position: relative;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    main img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(80%);
      z-index: 0;
     animation: zoomIn 10s ease-in-out infinite alternate;
    }

    @keyframes zoomIn {
     from {
       transform: scale(1);
      }
     to {
      transform: scale(1.1);
      }
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 20px;
    }

    .content h2 {
      font-size: 2.6rem;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }

    .content p {
      font-size: 1rem;
      line-height: 1.6;
      color: #e0e0e0;
    }

    footer {
      background: #000;
      padding: 20px;
      text-align: center;
      font-size: 0.9rem;
    }
    footer p{
      margin-bottom: 10px;
      color: #ddd;
    }

    footer a {
      color: #fff;
      font-size: 17px;
      text-decoration: none;
      font-weight: 500;
    }

    footer a:hover {
      text-decoration: underline;
    }