html{  
    background: #29046D; /* Fondo negro de respaldo */
    background-image: url('img/bg-web.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center/center;
  }

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

  @media (max-width: 768px) {
    body {
        height: 100dvh; /* Asegura que cubra la altura de la pantalla en móviles */
    }
}

  .radio{
    position: relative;
    height: 600px;
    position: relative;
    width: 100%;
}

.player {
    position: absolute;
    margin: 0 auto;
    width: 90%;
    top: 0%;
    right: 0%;
    left: 0%;
    bottom: 0%;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    z-index: 7;
}

.lunaradiovisualizericon {
    display: none;
}

.rowrigotextradionamespan {
    font-size: 2em;
}

.rowrigotexttitlespan {
    font-size: 25px;
}
@media (max-width: 800px) {
.player {
    width: 100%;
}
}


/*//////// INSTALL APP ////////*/

#install-button {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    position: fixed;
    border-radius: 8;
    bottom: 0px;
    right: 10px; 
    z-index: 1000;
  }
  
  #install-button:hover {
    background-color: #000;
    color: #fff;
    
  }
  
  