body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh + 8px);
  }
  #header {
    background-color: #1f1f1f;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 0;
  }

  #container {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  h1 {
    margin-bottom: 20px;
    color: #333;
  }

  .download-option {
    margin-bottom: 20px;
  }

  button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #f58220;
    color: white;
    border: none;
    transition: background-color 0.3s ease-in-out;
  }

  button:hover {
    background-color: #fc5104;
  }

  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .tooltip .tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    font-weight: normal;
    font-size: 15px;
    transition: opacity 0.3s;
  }

  .tooltip .tooltip-icon {
    margin-left: 5px;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0.5;
  }

  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }

  .bounce {
    animation: bounce 1s infinite;
  }
  .arrow {
    position: relative;
    left: -20px;
    font-size: 30px;
    transition: left 0.01s ease-in-out;
  }
  .download-option-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  @keyframes bounce {
    0% {
      transform: translateX(0px);
    }
    25% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(0px);
    }
    75% {
      transform: translateX(-5px);
    }
    100% {
      transform: translateX(0px);
    }
  }
 