
    :root {
      --gold: #7ed957;
      --black: #FFFFFF;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: var(--black);
      color: var(--gold);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Header */
    .top-bar {
      background-color: #1e90ff;
      color: var(--gold);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 15px;
      text-align: center;
    }

    .top-bar span {
      display: flex;
      align-items: center;
      font-size: 16px;
    }

    .top-bar i {
      margin-right: 8px;
    }

    .top-bar a {
      color: var(--gold);
      text-decoration: none;
    }

    /* apps content */
    .apps {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
    }

    .aps img {
      max-width: 90%;
      width: 400px;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .apps img:hover {
      transform: scale(1.05);
    }

   /* Main content */
    .main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
    }

    .main img {
      max-width: 90%;
      width: 400px;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .main img:hover {
      transform: scale(1.05);
    }
    /* Footer */
    footer {
      background-color: #1e90ff;
      color: var(--gold);
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }

    @media (max-width: 600px) {
      .top-bar span {
        flex-direction: column;
        text-align: center;
        font-size: 14px;
      }

      .main img {
        width: 80%;
      }
    }
