        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-image: url('images/bg.png');
            background-size: contain;
            background-position: center;
            font-family: Arial, sans-serif;
            background-repeat: no-repeat;
            background-color: black;
            flex-direction: column;
        }
        img{
            width: 100%;
            margin: 0 auto;
        }
        
  .wheel-container {
    position: relative;
    width: 90vw;
    max-width: 500px;
    aspect-ratio: 1/1;
  }

  .wheel-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }

  .wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 5s cubic-bezier(0.25, 1, 0.25, 1);
    z-index: 4;
  }

  .arrow {
    position: absolute;
    top: 42%;
    left: 85%;
    transform: translateX(-50%);
    width: 15%;
    z-index: 4;
  }

  .spin-button {
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }

  .popup {
    display: none;
    position: fixed;
    top: 80px; left: 0;
    width: 100%; 
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  .popup-content {
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-flex{
    display: flex;
    flex-direction: column;
    gap: 20px;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;

  }


  .txt{
    max-width: 350px;
    padding: 10px;
    text-align: center;

  }

  .txt img:nth-child(1){
    max-width: 200px;
    position: relative;
    top: -30px;
  }
  @media (max-width:500px){
    body{
        background-size: cover;
    }
  }

      @keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* zoom in */
  }
  100% {
    transform: scale(1); /* zoom out */
  }
}

.zoom-effect {
  animation: zoomInOut 1.5s infinite ease-in-out;
}