body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: url(BANNER-SUPERIOR-GRANDE.png) no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Source Sans Pro', sans-serif;
    background-repeat: repeat; /* Esto evita que el fondo se repita */
  }
  
  .content {
    text-align: center;
    color: #FFFFFF; /* Para mejor visibilidad contra el fondo */
  }
  
  .game {
    position: relative;
    display: inline-block;
  }
  
  #ruleta {
    max-width: 100%;
    height: auto;
  }
  
  #puntero {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 150px;
    transform: translate(-50%, -50%);
  }
  
  @media (max-width: 768px) {
    #ruleta, #puntero {
      width: 50%; /* Ajusta el tamaño de la ruleta y el puntero en dispositivos más pequeños */
    }
  }
  