
    body {
      font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans Hebrew', 'IBM Plex Sans', sans-serif;
    }

    body {
      background: linear-gradient(0deg, #e8f5e9 60%, #1baf38);
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      height: 100vh;
      text-align: center;
      color: #1f1f1f;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    #bodyMain {
      visibility: hidden;
    }

    body.rtl {
      direction: rtl;
    }

    #container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 80%;
      padding: 20px;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      background: white;
      margin-top: 80px;
    }

    .app-icon {
      width: 150px;
      margin-bottom: .5em;
    }

    #buttonText {
      font-size: medium;
      padding-bottom: 1em;
    }

    .food {
      width: 100%;
      filter: blur(10px);
      position: absolute;
      bottom: -15px;
      overflow: hidden;
      z-index: -999;
    }

    #storeIcon {
      width: 150px;
    }

    #openInBringy {
      background-color: white;
      color: white;
      height: 60px;
      padding: 10px 20px;
      width: calc(100vw - 40px);
      position: absolute;
      top: 0;
      left: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 0 10px gray;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    }

    #appTitle {
      color: black;
      margin: 0 10px;
      line-height: 0;
      font-size: 12pt;
    }

    #appTitleBlock {
      display: flex;
      flex-direction: row;
      align-items: center;
    }

    @media (prefers-color-scheme: dark) {
      #openInBringy {
        background-color: #575757;
        color: white;
      }

      #appTitle {
        color: white;
      }
    }


    #openInBringyButton {
      background-color: #007AFF;
      color: white;
      padding: 5px 10px;
      border-radius: 10px;
      font-size: 12pt;
    }

    #appIcon {
      width: 30px;
      height: 30px;
      display: block;
      background-color: #1baf38;
      padding: 10px;
      border-radius: 10px;
    }