/* General styling */
    body {
      margin: 0;
      display: flex;
        flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: black;
      color: white;
      height: 100vh;
    }
    h1 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 0;
        font-family: "Inter", sans-serif;
    }
    h2 {
        margin-top: 0.5rem;
      font-size: 1rem;
      color: rgb(119, 119, 119);
      font-weight: 500;
        font-family: "Inter", sans-serif;
    }

    /* Circular positioning for app icons */
    .app-icons {
      position: absolute;
      width: 400px;
      height: 400px;
      top: 50%;
      left: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
        z-index: 1;
        transform: translate(-50%, -50%);
        animation: rotateAroundCenter 2s ease-out forwards; /* Rotate around center */
    }
    .app-icon {
      width: 60px;
      height: 60px;
      position: absolute;
      background-size: cover;
      border-radius: 50%;
      cursor: pointer;
    }

    /* Rotation animation keyframes */
  @keyframes rotateAroundCenter {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

    /* Positioning the icons in a circle */
    .app-icon:nth-child(1) { transform: rotate(0deg) translate(220px); }
    .app-icon:nth-child(1) img { transform: rotate(0deg); }

    .app-icon:nth-child(2) { transform: rotate(24deg) translate(220px); }
    .app-icon:nth-child(2) img { transform: rotate(-24deg); }

    .app-icon:nth-child(3) { transform: rotate(48deg) translate(220px); }
    .app-icon:nth-child(3) img { transform: rotate(-48deg); }

    .app-icon:nth-child(4) { transform: rotate(72deg) translate(220px); }
    .app-icon:nth-child(4) img { transform: rotate(-72deg); }

    .app-icon:nth-child(5) { transform: rotate(96deg) translate(220px); }
    .app-icon:nth-child(5) img { transform: rotate(-96deg); }

    .app-icon:nth-child(6) { transform: rotate(120deg) translate(220px); }
    .app-icon:nth-child(6) img { transform: rotate(-120deg); }

    .app-icon:nth-child(7) { transform: rotate(144deg) translate(220px); }
    .app-icon:nth-child(7) img { transform: rotate(-144deg); }

    .app-icon:nth-child(8) { transform: rotate(168deg) translate(220px); }
    .app-icon:nth-child(8) img { transform: rotate(-168deg); }

    .app-icon:nth-child(9) { transform: rotate(192deg) translate(220px); }
    .app-icon:nth-child(9) img { transform: rotate(-192deg); }

    .app-icon:nth-child(10) { transform: rotate(216deg) translate(220px); }
    .app-icon:nth-child(10) img { transform: rotate(-216deg); }

    .app-icon:nth-child(11) { transform: rotate(240deg) translate(220px); }
    .app-icon:nth-child(11) img { transform: rotate(-240deg); }

    .app-icon:nth-child(12) { transform: rotate(264deg) translate(220px); }
    .app-icon:nth-child(12) img { transform: rotate(-264deg); }

    .app-icon:nth-child(13) { transform: rotate(288deg) translate(220px); }
    .app-icon:nth-child(13) img { transform: rotate(-288deg); }

    .app-icon:nth-child(14) { transform: rotate(312deg) translate(220px); }
    .app-icon:nth-child(14) img { transform: rotate(-312deg); }

    .app-icon:nth-child(15) { transform: rotate(336deg) translate(220px); }
    .app-icon:nth-child(15) img { transform: rotate(-336deg); }


    .app-info {
          position: fixed;
          top: calc(50% - 100px);
          left: calc(50% - 250px);
          background-color: rgb(26,26,26);
          color: white;
          padding: 20px;
          border-radius: 10px;
          text-align: left;
          width: 500px;
          font-family: "Inter", sans-serif;
        z-index: 1;
        opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .app-info.visible {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .app-info img.close {
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .app-info h3 {
        font-size: 1rem;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .app-info h3 img {
        margin-right: 10px;
    }

    .app-info a {
        display: block;
        text-align: center;
        margin-top: 25px;
    }

    .app-info a img {
        cursor: pointer;
    }

    .app-info p {
        color: rgb(119, 119, 119);
        font-size: 0.85rem;
        line-height: 1.5rem;
        font-weight: normal;
    }

    /* Bottom icons styling */
      .bottom-icons {
        position: fixed;
        bottom: 10px;
        right: 10px;
        display: flex;
        flex-direction: row;
        gap: 10px;
      }
      .bottom-icon {
        width: 25px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        font-size: 1.2rem;
        text-decoration: none;
        cursor: pointer;
      }

      .bottom-icon:hover img {
        filter: brightness(2);
      }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      h1 { font-size: 3rem; }
      h2 { font-size: 1rem; }
      .app-icons { width: 300px; height: 300px; }
    }
