*{
    margin: 0;
    padding: 0;
     box-sizing: border-box;
}

body{
    background: #FAD201;
}

.social-buttons {
   background-color:black;
    background-image: url('../../multimedia/imagenes/radio4.jpg'); /* Reemplaza 'ruta-de-tu-imagen.jpg' con la ruta de tu imagen */
    background-size: contain; /* La imagen se ajustará dentro del elemento sin recortarse */
    background-repeat: no-repeat;
    background-position:center;
    width: 1360er; /* Ancho del div según sea necesario */
    height: 130px; /* Altura del div según sea necesario (ajusta esto) */   
    color: #fff;
    text-align: center;
    padding: 1em;


  border: 8px solid black;
  animation: cambiarColores 3s infinite;
}

@keyframes cambiarColores {
  0% {
    border-color: red;
  }
  25% {
    border-color:blue;
  }
  50% {
    border-color:purple ;
  }
  75% {
    border-color: silver;
  }
  100% {
    border-color: red;
  }
}


   
   /* Asegúrate de agregar estos estilos al final de tu archivo CSS o ajustar según sea necesario */

/*.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.78); /* Fondo oscuro transparente */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Z-index alto para que esté sobre otros elementos */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.nav.active {
    visibility: visible;
    opacity: 1;
}



<img src="radio4.jpg" alt="Descripción de la imagen" class="mi-elemento">

.nav{
    
    margin: 6px auto;
    background: #34495E;
    padding: 0;
    display: flex;
 
}

.nav ul{
    list-style: none;

}

.nav-list > li{
    position: relative;
    display: inline-block;
    position: relative; /* Agrega esto para controlar el submenú */
}

.nav-list > li > a{
    display: block;
    padding: 15px 31px;
    color: black;
    font-family: 'Open sans';
    text-decoration: none;
font-weight: bold;

}


.nav-list a:hover, .submenu li a:hover {
    transform: rotateX(10deg) scale(1.0);
    background-color: orange;
    border-color: #fff;
}




/* Submenu */

.submenu {
    
    position: absolute;
    background: #34495E;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1.5s;
    z-index: 999; /* Asegura que el submenú esté por encima de otros elementos */
}

.submenu li a{
    display: block;
    padding: 15px;
    color: #fff;
    font-family: 'Open sans';
    text-decoration: none;
}


.nav-list li:hover .submenu {
    visibility: visible;
    opacity: 1;
    border-color: #fff;

}



footer {
    text-align: center;
    padding: 1em;
    background-color: #34495E;
    color: #fff;
}
    


/* Estilos generales radio  */

.audio-container {
    float: right;
    margin-top: 50px;
     justify-content: flex-end;
  display: flex;
  width: 120px;
  align-items: center;

    height: 40px;
    border-radius: 190%;
 
}


body {
    margin: 0;
    padding: 0;
}

/* Estilos para los botones sociales */

.social-buttons {
    display: flex;
    gap: 20px;
    
}
.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    background-color:   #FF0000;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    position: relative;
  top: 50px;
    
}



.social-button:hover {
    background-color:   orange;
}

.whatsapp {
    background-color:   white;
}

.facebook {
    background-color:   white;
}

.twitter {
    background-color:   white;      
}

.instagram {
    background-color:   white;

}

/* Estilos para el logo*/

.logo {

border-radius: 10px;
  
    margin:-20px;
  width: 220px; 
  height: 60px;
 
}


/* Estilos para el reproductor de audio */
#audioAJDDHR {
    margin-right: auto;
    margin-left: 20px;
    margin-top: -10px; /* Ajusta esta propiedad para subir el reproductor */
}



/* Estilos para las imágenes en los botones */
.social-button img {
    width: 30px;
    height: 30px;
}



